@@ -827,7 +827,7 @@ def validate_hist_bins(s):
827
827
# line props
828
828
'lines.linewidth' : [1.0 , validate_float ], # line width in points
829
829
'lines.linestyle' : ['-' , six .text_type ], # solid line
830
- 'lines.color' : ['b ' , validate_color ], # blue
830
+ 'lines.color' : ['[0] ' , validate_color ], # blue
831
831
'lines.marker' : ['None' , six .text_type ], # black
832
832
'lines.markeredgewidth' : [1.0 , validate_float ],
833
833
'lines.markersize' : [6 , validate_float ], # markersize, in points
@@ -843,7 +843,7 @@ def validate_hist_bins(s):
843
843
## patch props
844
844
'patch.linewidth' : [None , validate_float_or_None ], # line width in points
845
845
'patch.edgecolor' : ['k' , validate_color ], # black
846
- 'patch.facecolor' : ['b ' , validate_color ], # blue
846
+ 'patch.facecolor' : ['[0] ' , validate_color ], # blue
847
847
'patch.antialiased' : [True , validate_bool ], # antialiased (no jaggies)
848
848
849
849
## Histogram properties
@@ -992,9 +992,6 @@ def validate_hist_bins(s):
992
992
'axes.formatter.use_mathtext' : [False , validate_bool ],
993
993
'axes.formatter.useoffset' : [True , validate_bool ],
994
994
'axes.unicode_minus' : [True , validate_bool ],
995
- 'axes.color_cycle' : [['b' , 'g' , 'r' , 'c' , 'm' , 'y' , 'k' ],
996
- deprecate_axes_colorcycle ], # cycle of plot
997
- # line colors
998
995
# This entry can be either a cycler object or a
999
996
# string repr of a cycler-object, which gets eval()'ed
1000
997
# to create the object.
0 commit comments