@@ -352,6 +352,7 @@ def inset_axes(self, bounds, *, transform=None, zorder=5, **kwargs):
352352
353353 return inset_ax
354354
355+ @docstring .dedent_interpd
355356 def indicate_inset (self , bounds , inset_ax = None , * , transform = None ,
356357 facecolor = 'none' , edgecolor = '0.5' , alpha = 0.5 ,
357358 zorder = 4.99 , ** kwargs ):
@@ -921,6 +922,7 @@ def axhspan(self, ymin, ymax, xmin=0, xmax=1, **kwargs):
921922 self ._request_autoscale_view (scalex = False )
922923 return p
923924
925+ @docstring .dedent_interpd
924926 def axvspan (self , xmin , xmax , ymin = 0 , ymax = 1 , ** kwargs ):
925927 """
926928 Add a vertical span (rectangle) across the Axes.
@@ -1497,10 +1499,9 @@ def plot(self, *args, scalex=True, scaley=True, data=None, **kwargs):
14971499 >>> plot([1, 2, 3], [1, 2, 3], 'go-', label='line 1', linewidth=2)
14981500 >>> plot([1, 2, 3], [1, 4, 9], 'rs', label='line 2')
14991501
1500- If you make multiple lines with one plot call, the kwargs
1501- apply to all those lines.
1502- In case if label object is iterable, each its element is
1503- used as label for a separate line.
1502+ If you specify multiple lines with one plot call, the kwargs apply
1503+ to all those lines. In case the label object is iterable, each
1504+ element is used as labels for each set of data.
15041505
15051506 Here is a list of available `.Line2D` properties:
15061507
0 commit comments