@@ -432,18 +432,12 @@ def __call__(self, s):
432432 'legend.isaxes' : [True ,validate_bool ], # this option is internally ignored - it never served any useful purpose
433433 'legend.numpoints' : [2 , validate_int ], # the number of points in the legend line
434434 'legend.fontsize' : ['large' , validate_fontsize ],
435- 'legend.pad' : [0 , validate_float ], # was 0.2, deprecated; the fractional whitespace inside the legend border
436- 'legend.borderpad' : [0.4 , validate_float ], # units are fontsize
437435 'legend.markerscale' : [1.0 , validate_float ], # the relative size of legend markers vs. original
438-
439- # the following dimensions are in axes coords
440- 'legend.labelsep' : [0.010 , validate_float ], # the vertical space between the legend entries
441- 'legend.handlelen' : [0.05 , validate_float ], # the length of the legend lines
442- 'legend.handletextsep' : [0.02 , validate_float ], # the space between the legend line and legend text
443- 'legend.axespad' : [0.02 , validate_float ], # the border between the axes and legend edge
444436 'legend.shadow' : [False , validate_bool ],
445437
446438
439+ # the following dimensions are in fraction of the font size
440+ 'legend.borderpad' : [0.4 , validate_float ], # units are fontsize
447441 'legend.labelspacing' : [0.5 , validate_float ], # the vertical space between the legend entries
448442 'legend.handlelength' : [2. , validate_float ], # the length of the legend lines
449443 'legend.handletextpad' : [.8 , validate_float ], # the space between the legend line and legend text
@@ -453,11 +447,6 @@ def __call__(self, s):
453447
454448 'legend.markerscale' : [1.0 , validate_float ], # the relative size of legend markers vs. original
455449
456- # the following dimensions are in axes coords
457- 'legend.labelsep' : [0.010 , validate_float ], # the vertical space between the legend entries
458- 'legend.handlelen' : [0.05 , validate_float ], # the length of the legend lines
459- 'legend.handletextsep' : [0.02 , validate_float ], # the space between the legend line and legend text
460- 'legend.axespad' : [0.5 , validate_float ], # the border between the axes and legend edge
461450 'legend.shadow' : [False , validate_bool ],
462451
463452
0 commit comments