We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd2c763 commit d856e7fCopy full SHA for d856e7f
1 file changed
gnuplotlib.py
@@ -2056,9 +2056,12 @@ def getTestDataLen(curve):
2056
2057
basecmd = ''
2058
2059
- if any( curve.get('axes','x')[-1] == '2' for curve in curves ):
+ if any( curve.get('axes','xxx')[-2:] == 'y2' for curve in curves ):
2060
basecmd += "set ytics nomirror\n"
2061
basecmd += "set y2tics\n"
2062
+ if any( curve.get('axes','xxx')[:2] == 'x2' for curve in curves ):
2063
+ basecmd += "set xtics nomirror\n"
2064
+ basecmd += "set x2tics\n"
2065
2066
binwidth = None
2067
for curve in curves:
0 commit comments