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
When I create a figure using PlotlyLight, the HTML version scales well with my settings, but the size of the images saved with PlotlyKaleido does not.
using PlotlyLight using PlotlyKaleido p = plot(y=rand(10)) p.layout.autosize = false p.layout.width = 1000 p.layout.height = 300 PlotlyLight.save(p, "myplot.html") PlotlyKaleido.start() (;data, layout, config) = p PlotlyKaleido.savefig((; data, layout, config), "myplot.png") PlotlyKaleido.kill_kaleido()
myplot.html
myplot.png
The text was updated successfully, but these errors were encountered:
It works well. It was my mistake.
using PlotlyLight using PlotlyKaleido p = plot(y=rand(10)) PlotlyLight.save(p, "myplot.html") PlotlyKaleido.start() (;data, layout, config) = p PlotlyKaleido.savefig((; data, layout, config), "myplot.png", height=300, width=1000) PlotlyKaleido.kill_kaleido()
Sorry, something went wrong.
No branches or pull requests
When I create a figure using PlotlyLight, the HTML version scales well with my settings, but the size of the images saved with PlotlyKaleido does not.
myplot.html
myplot.png
The text was updated successfully, but these errors were encountered: