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 try to output a pdf, I find that as long as the height of the output image is greater than 414, the pdf file will be two pages.
import plotly.express as px import plotly.graph_objects as go df = px.data.iris() fig = px.scatter(df, x="sepal_width", y="sepal_length", color="species", facet_col="species") fig.show() fig.write_image('iris_scatter.pdf', height=414)
import plotly.express as px import plotly.graph_objects as go df = px.data.iris() fig = px.scatter(df, x="sepal_width", y="sepal_length", color="species", facet_col="species") fig.show() fig.write_image('iris_scatter.pdf', height=415)
Height 415 seems to break through some limitations that prevent the image from displaying on one page.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I try to output a pdf, I find that as long as the height of the output image is greater than 414, the pdf file will be two pages.
Height 415 seems to break through some limitations that prevent the image from displaying on one page.
The text was updated successfully, but these errors were encountered: