@@ -988,12 +988,12 @@ def validate_webagg_address(s):
988
988
raise ValueError ("'webagg.address' is not a valid IP address" )
989
989
990
990
991
- validate_axes_titlelocation = ValidateInStrings ('axes.titlelocation' ,
992
- ['left' , 'center' , 'right' ])
993
- validate_xaxis_labellocation = ValidateInStrings ('xaxis.labellocation' ,
991
+ _validate_axes_titlelocation = ValidateInStrings ('axes.titlelocation' ,
994
992
['left' , 'center' , 'right' ])
995
- validate_yaxis_labellocation = ValidateInStrings ('yaxis.labellocation' ,
996
- ['bottom' , 'center' , 'top' ])
993
+ _validate_xaxis_labellocation = ValidateInStrings ('xaxis.labellocation' ,
994
+ ['left' , 'center' , 'right' ])
995
+ _validate_yaxis_labellocation = ValidateInStrings ('yaxis.labellocation' ,
996
+ ['bottom' , 'center' , 'top' ])
997
997
998
998
# a map from key -> value, converter
999
999
defaultParams = {
@@ -1177,7 +1177,7 @@ def validate_webagg_address(s):
1177
1177
1178
1178
'axes.titlesize' : ['large' , validate_fontsize ], # fontsize of the
1179
1179
# axes title
1180
- 'axes.titlelocation' : ['center' , validate_axes_titlelocation ], # alignment of axes title
1180
+ 'axes.titlelocation' : ['center' , _validate_axes_titlelocation ], # alignment of axes title
1181
1181
'axes.titleweight' : ['normal' , validate_fontweight ], # font weight of axes title
1182
1182
'axes.titlecolor' : ['auto' , validate_color_or_auto ], # font color of axes title
1183
1183
'axes.titlepad' : [6.0 , validate_float ], # pad from axes top to title in points
@@ -1225,8 +1225,8 @@ def validate_webagg_address(s):
1225
1225
'axes3d.grid' : [True , validate_bool ], # display 3d grid
1226
1226
1227
1227
# axis props
1228
- 'xaxis.labellocation' : ['center' , validate_xaxis_labellocation ], # alignment of axis title
1229
- 'yaxis.labellocation' : ['center' , validate_yaxis_labellocation ], # alignment of axis title
1228
+ 'xaxis.labellocation' : ['center' , _validate_xaxis_labellocation ], # alignment of axis title
1229
+ 'yaxis.labellocation' : ['center' , _validate_yaxis_labellocation ], # alignment of axis title
1230
1230
1231
1231
# scatter props
1232
1232
'scatter.marker' : ['o' , validate_string ],
0 commit comments