Skip to content

Commit 3bde6c4

Browse files
committed
Stop reversing parametric plot axes
1 parent c2bb05a commit 3bde6c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proplot/axes/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ def _auto_format_1d(
762762
x, kw_format = _parse_string_coords(x, which=sx, **kw_format)
763763
if not hist and not box and not pie:
764764
*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]:
765+
if not hist and not scatter and not parametric and x.ndim == 1 and x.size > 1 and x[1] < x[0]: # noqa: E501
766766
kw_format[sx + 'reverse'] = True # auto reverse
767767

768768
# Appply

0 commit comments

Comments
 (0)