@@ -1051,6 +1051,7 @@ def validate_animation_writer_path(p):
1051
1051
'axes.titlesize' : ['large' , validate_fontsize ], # fontsize of the
1052
1052
# axes title
1053
1053
'axes.titleweight' : ['normal' , six .text_type ], # font weight of axes title
1054
+ 'axes.titlepad' : [9.0 , validate_float ], # pad from axes top to title in points
1054
1055
'axes.grid' : [False , validate_bool ], # display grid or not
1055
1056
'axes.grid.which' : ['major' , validate_axis_locator ], # set wether the gid are by
1056
1057
# default draw on 'major'
@@ -1117,23 +1118,19 @@ def validate_animation_writer_path(p):
1117
1118
1118
1119
#legend properties
1119
1120
'legend.fancybox' : [True , validate_bool ],
1120
-
1121
- # at some point, legend.loc should be changed to 'best'
1122
1121
'legend.loc' : ['best' , validate_legend_loc ],
1123
-
1124
- # this option is internally ignored - it never served any useful purpose
1125
- 'legend.isaxes' : [True , validate_bool ],
1126
-
1127
1122
# the number of points in the legend line
1128
1123
'legend.numpoints' : [1 , validate_int ],
1129
1124
# the number of points in the legend line for scatter
1130
- 'legend.scatterpoints' : [3 , validate_int ],
1131
- 'legend.fontsize' : ['large' , validate_fontsize ],
1132
-
1133
- # whether or not to draw a frame around legend
1125
+ 'legend.scatterpoints' : [1 , validate_int ],
1126
+ 'legend.fontsize' : ['medium' , validate_fontsize ],
1127
+ # the relative size of legend markers vs. original
1128
+ 'legend.markerscale' : [1.0 , validate_float ],
1129
+ 'legend.shadow' : [False , validate_bool ],
1130
+ # whether or not to draw a frame around legend
1134
1131
'legend.frameon' : [True , validate_bool ],
1135
- # alpha value of the legend frame
1136
- 'legend.framealpha' : [None , validate_float_or_None ],
1132
+ # alpha value of the legend frame
1133
+ 'legend.framealpha' : [0.8 , validate_float_or_None ],
1137
1134
1138
1135
## the following dimensions are in fraction of the font size
1139
1136
'legend.borderpad' : [0.4 , validate_float ], # units are fontsize
@@ -1153,7 +1150,7 @@ def validate_animation_writer_path(p):
1153
1150
'legend.markerscale' : [1.0 , validate_float ],
1154
1151
'legend.shadow' : [False , validate_bool ],
1155
1152
'legend.facecolor' : ['inherit' , validate_color_or_inherit ],
1156
- 'legend.edgecolor' : ['k ' , validate_color_or_inherit ],
1153
+ 'legend.edgecolor' : ['none ' , validate_color_or_inherit ],
1157
1154
1158
1155
# tick properties
1159
1156
'xtick.top' : [True , validate_bool ], # draw ticks on the top side
@@ -1206,13 +1203,13 @@ def validate_animation_writer_path(p):
1206
1203
'figure.autolayout' : [False , validate_bool ],
1207
1204
'figure.max_open_warning' : [20 , validate_int ],
1208
1205
1209
- 'figure.subplot.left' : [0.125 , ValidateInterval (0 , 1 , closedmin = True ,
1206
+ 'figure.subplot.left' : [0.155 , ValidateInterval (0 , 1 , closedmin = True ,
1210
1207
closedmax = True )],
1211
- 'figure.subplot.right' : [0.9 , ValidateInterval (0 , 1 , closedmin = True ,
1208
+ 'figure.subplot.right' : [0.87 , ValidateInterval (0 , 1 , closedmin = True ,
1212
1209
closedmax = True )],
1213
- 'figure.subplot.bottom' : [0.1 , ValidateInterval (0 , 1 , closedmin = True ,
1210
+ 'figure.subplot.bottom' : [0.13 , ValidateInterval (0 , 1 , closedmin = True ,
1214
1211
closedmax = True )],
1215
- 'figure.subplot.top' : [0.9 , ValidateInterval (0 , 1 , closedmin = True ,
1212
+ 'figure.subplot.top' : [0.87 , ValidateInterval (0 , 1 , closedmin = True ,
1216
1213
closedmax = True )],
1217
1214
'figure.subplot.wspace' : [0.2 , ValidateInterval (0 , 1 , closedmin = True ,
1218
1215
closedmax = False )],
0 commit comments