@@ -1102,25 +1102,19 @@ def validate_hist_bins(s):
11021102
11031103 #legend properties
11041104 'legend.fancybox' : [True , validate_bool ],
1105-
1106- # at some point, legend.loc should be changed to 'best'
11071105 'legend.loc' : ['best' , validate_legend_loc ],
1108-
1109- # this option is internally ignored - it never served any useful purpose
1110- 'legend.isaxes' : [True , validate_bool ],
1111-
11121106 # the number of points in the legend line
11131107 'legend.numpoints' : [1 , validate_int ],
11141108 # the number of points in the legend line for scatter
1115- 'legend.scatterpoints' : [3 , validate_int ],
1116- 'legend.fontsize' : ['large ' , validate_fontsize ],
1109+ 'legend.scatterpoints' : [1 , validate_int ],
1110+ 'legend.fontsize' : ['medium ' , validate_fontsize ],
11171111 # the relative size of legend markers vs. original
11181112 'legend.markerscale' : [1.0 , validate_float ],
11191113 'legend.shadow' : [False , validate_bool ],
11201114 # whether or not to draw a frame around legend
11211115 'legend.frameon' : [True , validate_bool ],
11221116 # alpha value of the legend frame
1123- 'legend.framealpha' : [None , validate_float_or_None ],
1117+ 'legend.framealpha' : [0.8 , validate_float_or_None ],
11241118
11251119 ## the following dimensions are in fraction of the font size
11261120 'legend.borderpad' : [0.4 , validate_float ], # units are fontsize
@@ -1140,7 +1134,7 @@ def validate_hist_bins(s):
11401134 'legend.markerscale' : [1.0 , validate_float ],
11411135 'legend.shadow' : [False , validate_bool ],
11421136 'legend.facecolor' : ['inherit' , validate_color_or_inherit ],
1143- 'legend.edgecolor' : ['k ' , validate_color_or_inherit ],
1137+ 'legend.edgecolor' : ['none ' , validate_color_or_inherit ],
11441138
11451139 # tick properties
11461140 'xtick.top' : [True , validate_bool ], # draw ticks on the top side
0 commit comments