We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be helpful if it were possible to render a plot in html or an image format directly in Plotlars as it is currently possible in plotly.
As a workaround Im using this code:
use plotly::Plot as PlotlyPlot; let mut plot = PlotlyPlot::new(); plot.set_layout(lineplot.get_layout().clone()); plot.add_traces(lineplot.get_traces().clone()); plot.write_html("./data.html");
The text was updated successfully, but these errors were encountered:
Thank you for comment. I've just added the chance to write into html. The other option will be added in a future version.
Sorry, something went wrong.
Ah I was just about to open a pull request. I will check it out. Thanks!
plotly/plotly.rs#241
No branches or pull requests
It would be helpful if it were possible to render a plot in html or an image format directly in Plotlars as it is currently possible in plotly.
As a workaround Im using this code:
The text was updated successfully, but these errors were encountered: