@@ -394,9 +394,9 @@ def __call__(self, s):
394394 'axes.facecolor' : ['w' , validate_color ], # background color; white
395395 'axes.edgecolor' : ['k' , validate_color ], # edge color; black
396396 'axes.linewidth' : [1.0 , validate_float ], # edge linewidth
397- 'axes.titlesize' : [14 , validate_fontsize ], # fontsize of the axes title
397+ 'axes.titlesize' : ['large' , validate_fontsize ], # fontsize of the axes title
398398 'axes.grid' : [False , validate_bool ], # display grid or not
399- 'axes.labelsize' : [12 , validate_fontsize ], # fontsize of the x any y labels
399+ 'axes.labelsize' : ['medium' , validate_fontsize ], # fontsize of the x any y labels
400400 'axes.labelcolor' : ['k' , validate_color ], # color of axis label
401401 'axes.formatter.limits' : [[- 7 , 7 ], validate_nseq_int (2 )],
402402 # use scientific notation if log10
@@ -409,7 +409,7 @@ def __call__(self, s):
409409 'legend.loc' : ['upper right' ,validate_legend_loc ], # at some point, this should be changed to 'best'
410410 'legend.isaxes' : [True ,validate_bool ], # this option is internally ignored - it never served any useful purpose
411411 'legend.numpoints' : [2 , validate_int ], # the number of points in the legend line
412- 'legend.fontsize' : [14 , validate_fontsize ],
412+ 'legend.fontsize' : ['large' , validate_fontsize ],
413413 'legend.pad' : [0.2 , validate_float ], # the fractional whitespace inside the legend border
414414 'legend.markerscale' : [1.0 , validate_float ], # the relative size of legend markers vs. original
415415
@@ -427,15 +427,15 @@ def __call__(self, s):
427427 'xtick.major.pad' : [4 , validate_float ], # distance to label in points
428428 'xtick.minor.pad' : [4 , validate_float ], # distance to label in points
429429 'xtick.color' : ['k' , validate_color ], # color of the xtick labels
430- 'xtick.labelsize' : [12 , validate_fontsize ], # fontsize of the xtick labels
430+ 'xtick.labelsize' : ['medium' , validate_fontsize ], # fontsize of the xtick labels
431431 'xtick.direction' : ['in' , str ], # direction of xticks
432432
433433 'ytick.major.size' : [4 , validate_float ], # major ytick size in points
434434 'ytick.minor.size' : [2 , validate_float ], # minor ytick size in points
435435 'ytick.major.pad' : [4 , validate_float ], # distance to label in points
436436 'ytick.minor.pad' : [4 , validate_float ], # distance to label in points
437437 'ytick.color' : ['k' , validate_color ], # color of the ytick labels
438- 'ytick.labelsize' : [12 , validate_fontsize ], # fontsize of the ytick labels
438+ 'ytick.labelsize' : ['medium' , validate_fontsize ], # fontsize of the ytick labels
439439 'ytick.direction' : ['in' , str ], # direction of yticks
440440
441441 'grid.color' : ['k' , validate_color ], # grid color
0 commit comments