@@ -1103,22 +1103,18 @@ def validate_hist_bins(s):
11031103 #legend properties
11041104 'legend.fancybox' : [True , validate_bool ],
11051105 'legend.loc' : ['best' , validate_legend_loc ],
1106-
1107- # this option is internally ignored - it never served any useful purpose
1108- 'legend.isaxes' : [True , validate_bool ],
1109-
11101106 # the number of points in the legend line
11111107 'legend.numpoints' : [1 , validate_int ],
11121108 # the number of points in the legend line for scatter
1113- 'legend.scatterpoints' : [3 , validate_int ],
1109+ 'legend.scatterpoints' : [1 , validate_int ],
11141110 'legend.fontsize' : ['small' , validate_fontsize ],
11151111 # the relative size of legend markers vs. original
11161112 'legend.markerscale' : [1.0 , validate_float ],
11171113 'legend.shadow' : [False , validate_bool ],
11181114 # whether or not to draw a frame around legend
1119- 'legend.frameon' : [False , validate_bool ],
1115+ 'legend.frameon' : [True , validate_bool ],
11201116 # alpha value of the legend frame
1121- 'legend.framealpha' : [None , validate_float_or_None ],
1117+ 'legend.framealpha' : [0.8 , validate_float_or_None ],
11221118
11231119 ## the following dimensions are in fraction of the font size
11241120 'legend.borderpad' : [0.4 , validate_float ], # units are fontsize
@@ -1138,7 +1134,7 @@ def validate_hist_bins(s):
11381134 'legend.markerscale' : [1.0 , validate_float ],
11391135 'legend.shadow' : [False , validate_bool ],
11401136 'legend.facecolor' : ['inherit' , validate_color_or_inherit ],
1141- 'legend.edgecolor' : ['k ' , validate_color_or_inherit ],
1137+ 'legend.edgecolor' : ['none ' , validate_color_or_inherit ],
11421138
11431139 # tick properties
11441140 'xtick.top' : [True , validate_bool ], # draw ticks on the top side
0 commit comments