We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0420b98 commit 02417c8Copy full SHA for 02417c8
proplot/axes/plot.py
@@ -2376,7 +2376,9 @@ def cycle_changer(
2376
labels[i] = ilabel
2377
2378
# Sanitize labels
2379
- labels = [_not_none(label, '') for label in labels]
+ # WARNING: Must convert labels to string here because e.g. scatter() applies
2380
+ # default label if input is False-ey. So numeric '0' would be overridden.
2381
+ labels = [str(_not_none(label, '')) for label in labels]
2382
2383
# Get step size for bar plots
2384
# WARNING: This will fail for non-numeric non-datetime64 singleton
0 commit comments