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 c2bb05a commit 3bde6c4Copy full SHA for 3bde6c4
proplot/axes/plot.py
@@ -762,7 +762,7 @@ def _auto_format_1d(
762
x, kw_format = _parse_string_coords(x, which=sx, **kw_format)
763
if not hist and not box and not pie:
764
*ys, kw_format = _parse_string_coords(*ys, which=sy, **kw_format)
765
- if not hist and not scatter and x.ndim == 1 and x.size > 1 and x[1] < x[0]:
+ if not hist and not scatter and not parametric and x.ndim == 1 and x.size > 1 and x[1] < x[0]: # noqa: E501
766
kw_format[sx + 'reverse'] = True # auto reverse
767
768
# Appply
0 commit comments