@@ -429,24 +429,23 @@ def __init__(self, fig, rect,
429
429
** kwargs
430
430
):
431
431
"""
432
- Build an `Axes` instance in
433
- `~matplotlib.figure.Figure` *fig* with
434
- *rect=[left, bottom, width, height]* in
435
- `~matplotlib.figure.Figure` coordinates
432
+ Build an `Axes` instance in `~matplotlib.figure.Figure` *fig* with
433
+ *rect=[left, bottom, width, height]* in `~matplotlib.figure.Figure`
434
+ coordinates
436
435
437
436
Optional keyword arguments:
438
437
439
438
================ =========================================
440
439
Keyword Description
441
440
================ =========================================
442
- *adjustable* [ 'box' | 'datalim' | 'box-forced']
441
+ *adjustable* [ 'box' | 'datalim' | 'box-forced' ]
443
442
*alpha* float: the alpha transparency (can be None)
444
443
*anchor* [ 'C', 'SW', 'S', 'SE', 'E', 'NE', 'N',
445
444
'NW', 'W' ]
446
445
*aspect* [ 'auto' | 'equal' | aspect_ratio ]
447
446
*autoscale_on* [ *True* | *False* ] whether or not to
448
447
autoscale the *viewlim*
449
- *axisbelow* [ *True* | *False* | 'line'] draw the grids
448
+ *axisbelow* [ *True* | *False* | 'line' ] draw the grids
450
449
and ticks below or above most other artists,
451
450
or below lines but above patches
452
451
*cursor_props* a (*float*, *color*) tuple
@@ -458,11 +457,11 @@ def __init__(self, fig, rect,
458
457
*navigate_mode* [ 'PAN' | 'ZOOM' | None ] the navigation
459
458
toolbar button status
460
459
*position* [left, bottom, width, height] in
461
- class: `~matplotlib.figure.Figure` coords
462
- *sharex* an class: `~matplotlib.axes.Axes` instance
463
- to share the x-axis with
464
- *sharey* an class: `~matplotlib.axes.Axes` instance
465
- to share the y-axis with
460
+ `~matplotlib.figure.Figure` coords
461
+ *sharex* an `~matplotlib.axes.Axes` instance to share the
462
+ x-axis with
463
+ *sharey* an `~matplotlib.axes.Axes` instance to share the
464
+ y-axis with
466
465
*title* the title string
467
466
*visible* [ *True* | *False* ] whether the axes is
468
467
visible
@@ -617,9 +616,11 @@ def _init_axis(self):
617
616
618
617
def set_figure (self , fig ):
619
618
"""
620
- Set the class: `~matplotlib.axes.Axes` figure
619
+ Set the `~matplotlib.axes.Axes` figure.
621
620
622
- accepts a class:`~matplotlib.figure.Figure` instance
621
+ Parameters
622
+ ----------
623
+ fig : matplotlib.figure.Figure
623
624
"""
624
625
martist .Artist .set_figure (self , fig )
625
626
0 commit comments