We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a70e9e commit 19779c9Copy full SHA for 19779c9
proplot/wrappers.py
@@ -1512,7 +1512,7 @@ def cycle_changer(
1512
# Get the new cycler
1513
cycle_args = () if cycle is None else (cycle,)
1514
if not is1d and y.shape[1] > 1: # default samples count
1515
- cycle_kw.setdefault('samples', y.shape[1])
+ cycle_kw.setdefault('N', y.shape[1])
1516
cycle = styletools.Cycle(*cycle_args, **cycle_kw)
1517
# Get the original property cycle
1518
# NOTE: Matplotlib saves itertools.cycle(cycler), not the original
0 commit comments