We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a7d0dc commit afef920Copy full SHA for afef920
1 file changed
panel/simdec_app.py
@@ -243,6 +243,7 @@ def figure_pn(
243
)
244
axs[0][0].set_xlim(xlim)
245
axs[0][0].set_box_aspect(aspect=1)
246
+ axs[0][0].axis("off")
247
248
data = pd.concat([pd.melt(res.bins), pd.melt(res2.bins)["value"]], axis=1)
249
data.columns = ["c", "x", "y"]
@@ -269,6 +270,7 @@ def figure_pn(
269
270
271
axs[1][1].set_ylim(ylim)
272
axs[1][1].set_box_aspect(aspect=1)
273
+ axs[1][1].axis("off")
274
275
fig.subplots_adjust(wspace=0, hspace=0)
276
return fig
0 commit comments