You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When writing plotly.express.imshow figure to pdf using write_image, the contents are rendered extremely blurry while axes and legends are rendered just fine: test.pdf
Code to produce figure:
import numpy as np
import plotly.express as px
np.random.seed(0)
data = np.random.randint(low=0, high=2, size=(10, 10))
fig = px.imshow(data)
fig.write_image('test.pdf', format='pdf')
I am using plotly version 5.24.1 and kaleido version 0.2.1.
The text was updated successfully, but these errors were encountered:
When writing
plotly.express.imshow
figure to pdf usingwrite_image
, the contents are rendered extremely blurry while axes and legends are rendered just fine: test.pdfCode to produce figure:
I am using
plotly
version5.24.1
andkaleido
version0.2.1
.The text was updated successfully, but these errors were encountered: