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
Sorry not making a MWE because I don't want to break the flow in fixing another bug.
In this example: #82 the gray squares and gray circles should have actually color na_color=(1.0, 0.7, 0.7, 0.5) which should be a semi-transparent reddish color:
edit by ttreis:
MRE
import matplotlib.pyplot as plt
import spatialdata as sd
import spatialdata_plot
blob = sd.datasets.blobs()
# otherwise pre-commits will remove the "unused" import
_ = spatialdata_plot
ax = plt.gca()
blob.pl.render_shapes(element="blobs_shapes", na_color=(1.0, 0.7, 0.7, 0.5)).pl.show(ax=ax)
plt.show()
The text was updated successfully, but these errors were encountered:
Sorry not making a MWE because I don't want to break the flow in fixing another bug.
In this example: #82 the gray squares and gray circles should have actually color
na_color=(1.0, 0.7, 0.7, 0.5)
which should be a semi-transparent reddish color:edit by ttreis:
MRE
The text was updated successfully, but these errors were encountered: