 
    
  
      
    Axes.set_prop_cycle(*args, **kwargs)¶Set the property cycle for any future plot commands on this Axes.
set_prop_cycle(arg) set_prop_cycle(label, itr) set_prop_cycle(label1=itr1[, label2=itr2[, ...]])
Form 1 simply sets given Cycler object.
Form 2 creates and sets  a Cycler from a label and an iterable.
Form 3 composes and sets  a Cycler as an inner product of the
pairs of keyword arguments. In other words, all of the
iterables are cycled simultaneously, as if through zip().
| Parameters: | arg : Cycler 
 label : str 
 itr : iterable 
 | 
|---|