Questions tagged [export-to-html]
20 questions
4
votes
3 answers
Export html table in R with recognition of hyperlinks
I know this question has been asked before few times, but the answers provided are not fitting my task unfortunately. this is an example: exporting table in R to HTML with hyperlinks
I need to export dataframe from R to html while providing…

Bahi8482
- 489
- 5
- 15
2
votes
0 answers
How to export jupyter notebook to html with interactive chart?
I have a problem with jupyter notebook when exporting to HTML file. Usually, when I export the interactive charts, its features still remain when exporting to HTML file. But today, I had imported some extensions into jupyter notebook by anaconda…

Sang Huynh
- 41
- 3
1
vote
1 answer
Convert PowerPoint Presentation to HTML with Office 2019 or Office 365
I have a code which converts the PowerPoint presentation to HTML using Office 2007. The code which runs on Office 2007 without a problem is as below:
static void Main(string[] args)
{
string source =…

Simant
- 3,142
- 4
- 32
- 61
1
vote
0 answers
how can I save my plotly.js chart as a dynamic html web page?
I'm using plotly.js to create interactive plots and want to be able to export the plots as an html file, so the charts can be shared between users. I don't want these plots to be downloaded as static images (I already have that functionality), I am…

AnonymousVanRabbit
- 11
- 1
1
vote
1 answer
When converting Dataframe to HTML is it possible to set column maximum width
I'm not very good in HTML.. so maybe there is an easy fix to this by using classes... But haven't found any example on the net...
I want to set my table column a maximum width.. It the text cell is bigger than the cell, than word breaks is…

Sebastien Berthiaume
- 11
- 2
1
vote
1 answer
Embedded image when export report to outlook mail as html
I have this code that export my report to html then show it on outlook body
Microsoft.Office.Interop.Outlook.Application oApp = new Microsoft.Office.Interop.Outlook.Application();
Microsoft.Office.Interop.Outlook.MailItem oMsg =…

M.Bouabdallah
- 530
- 10
- 29
1
vote
1 answer
Jupyter lab widgets not exporting to HTML
I have a problem with widgets' visualization and export in Jupyter lab. Basically, some widgets (e.g. the text) show their output in the log rather than in the console (see the image below).
Moreover, when I try to export them in HTML they don't…

Luigi Tiburzi
- 4,265
- 7
- 32
- 43
1
vote
1 answer
How to adapt the report size to screen size when exporting to HTML
Is there a way to specify the size of the HTML report as percentages, like width = "90%"? Or to ensure in some other way, that the report's width, when exported to HTML, is a certain percentage of the user's screen?
I don't mind creating an extra…

badbishop
- 1,281
- 2
- 18
- 38
0
votes
1 answer
Exporting a single nextJS page to html onclick with dynamic data
I'm working on a project where I need to populate a template.tsx file with the data I collect from a form and generate a html file with the collected data, then download it to the users computer. How can I achieve this with nextJS?
Thanks in…

Harsha Abeyvickrama
- 46
- 7
0
votes
1 answer
Webdatarock export as HTML without download in React
I want to get the webdatarock table in HTML tag content without downloading in React JS.
In JavaScript, below code works for me.
pivot.exportTo("html", { destinationType: "server", url: "" }, res =\> { console.log(res.data) })
In react, It shows…
0
votes
1 answer
Powershell - Export array to Html
I need a script that fetches the information and generates an HTML document.
I'm looking for a way to make the columns of my report more friendly so I saw that it is possible to change them with [PSCustomObject] but after I go through this process…

Bryan Almeida
- 11
- 2
0
votes
1 answer
Apply multiple styles to cell in pandas
So, basically I want to apply styles to cell and render to html.
This is what I have done so far:
import pandas as pd
import numpy as np
data = [dict(order='J23-X23', num=5, name='foo', value='YES'),
dict(order='Y23-X24', num=-4,…

Pankaj Singh
- 526
- 7
- 21
0
votes
0 answers
Unreal real engine 4.26 how to export into html5
Good day,
It seems that unreal engine 4.26 has officially taken out html5 exporting for games and was put as a plugin for the community but sadly it seems that the step by step guide…

user1868185
- 899
- 3
- 9
- 24
0
votes
1 answer
Using nest and tidy to create formatted html regression output in RMarkdown
I have used tidyr::nest to run a series of logistic regression models with different dependent variables. I want to output the results as a single html table in RMarkdown with each model as a column and the rows as exponentiated coefficients with…

Kellan Baker
- 375
- 3
- 11
0
votes
1 answer
How to save an interactive plot produced by matplot
I got a super graph that I would like to export as an html file to be showed on an website but I don't know how to figure that. Have you got an idea ?

NathanRDN
- 3
- 1
- 2