@@ -104,7 +104,7 @@ class AxesWidget(Widget):
104
104
Attributes
105
105
----------
106
106
ax : `~matplotlib.axes.Axes`
107
- The parent axes for the widget.
107
+ The parent Axes for the widget.
108
108
canvas : `~matplotlib.backend_bases.FigureCanvasBase`
109
109
The parent figure canvas for the widget.
110
110
active : bool
@@ -313,7 +313,7 @@ class Slider(SliderBase):
313
313
"""
314
314
A slider representing a floating point range.
315
315
316
- Create a slider from *valmin* to *valmax* in axes *ax*. For the slider to
316
+ Create a slider from *valmin* to *valmax* in Axes *ax*. For the slider to
317
317
remain responsive you must maintain a reference to it. Call
318
318
:meth:`on_changed` to connect to the slider event.
319
319
@@ -591,7 +591,7 @@ class RangeSlider(SliderBase):
591
591
max of the range via the *val* attribute as a tuple of (min, max).
592
592
593
593
Create a slider that defines a range contained within [*valmin*, *valmax*]
594
- in axes *ax*. For the slider to remain responsive you must maintain a
594
+ in Axes *ax*. For the slider to remain responsive you must maintain a
595
595
reference to it. Call :meth:`on_changed` to connect to the slider event.
596
596
597
597
Attributes
@@ -948,7 +948,7 @@ class CheckButtons(AxesWidget):
948
948
Attributes
949
949
----------
950
950
ax : `~matplotlib.axes.Axes`
951
- The parent axes for the widget.
951
+ The parent Axes for the widget.
952
952
labels : list of `.Text`
953
953
954
954
rectangles : list of `.Rectangle`
@@ -970,7 +970,7 @@ def __init__(self, ax, labels, actives=None):
970
970
Parameters
971
971
----------
972
972
ax : `~matplotlib.axes.Axes`
973
- The parent axes for the widget.
973
+ The parent Axes for the widget.
974
974
975
975
labels : list of str
976
976
The labels of the check buttons.
@@ -1101,7 +1101,7 @@ class TextBox(AxesWidget):
1101
1101
Attributes
1102
1102
----------
1103
1103
ax : `~matplotlib.axes.Axes`
1104
- The parent axes for the widget.
1104
+ The parent Axes for the widget.
1105
1105
label : `.Text`
1106
1106
1107
1107
color : color
@@ -1378,7 +1378,7 @@ class RadioButtons(AxesWidget):
1378
1378
Attributes
1379
1379
----------
1380
1380
ax : `~matplotlib.axes.Axes`
1381
- The parent axes for the widget.
1381
+ The parent Axes for the widget.
1382
1382
activecolor : color
1383
1383
The color of the selected button.
1384
1384
labels : list of `.Text`
@@ -1396,7 +1396,7 @@ def __init__(self, ax, labels, active=0, activecolor='blue'):
1396
1396
Parameters
1397
1397
----------
1398
1398
ax : `~matplotlib.axes.Axes`
1399
- The axes to add the buttons to.
1399
+ The Axes to add the buttons to.
1400
1400
labels : list of str
1401
1401
The button labels.
1402
1402
active : int
@@ -1575,7 +1575,7 @@ def _on_reset(self, event):
1575
1575
1576
1576
class Cursor (AxesWidget ):
1577
1577
"""
1578
- A crosshair cursor that spans the axes and moves with mouse cursor.
1578
+ A crosshair cursor that spans the Axes and moves with mouse cursor.
1579
1579
1580
1580
For the cursor to remain responsive you must keep a reference to it.
1581
1581
@@ -1671,14 +1671,14 @@ def _update(self):
1671
1671
class MultiCursor (Widget ):
1672
1672
"""
1673
1673
Provide a vertical (default) and/or horizontal line cursor shared between
1674
- multiple axes .
1674
+ multiple Axes .
1675
1675
1676
1676
For the cursor to remain responsive you must keep a reference to it.
1677
1677
1678
1678
Parameters
1679
1679
----------
1680
1680
canvas : `matplotlib.backend_bases.FigureCanvasBase`
1681
- The FigureCanvas that contains all the axes .
1681
+ The FigureCanvas that contains all the Axes .
1682
1682
1683
1683
axes : list of `matplotlib.axes.Axes`
1684
1684
The `~.axes.Axes` to attach the cursor to.
@@ -1902,7 +1902,7 @@ def ignore(self, event):
1902
1902
and event .button not in self .validButtons ):
1903
1903
return True
1904
1904
# If no button was pressed yet ignore the event if it was out
1905
- # of the axes
1905
+ # of the Axes
1906
1906
if self ._eventpress is None :
1907
1907
return event .inaxes != self .ax
1908
1908
# If a button was pressed, check if the release-button is the same.
@@ -2590,7 +2590,7 @@ class ToolLineHandles:
2590
2590
Parameters
2591
2591
----------
2592
2592
ax : `matplotlib.axes.Axes`
2593
- Matplotlib axes where tool handles are displayed.
2593
+ Matplotlib Axes where tool handles are displayed.
2594
2594
positions : 1D array
2595
2595
Positions of handles in data coordinates.
2596
2596
direction : {"horizontal", "vertical"}
@@ -2698,7 +2698,7 @@ class ToolHandles:
2698
2698
Parameters
2699
2699
----------
2700
2700
ax : `matplotlib.axes.Axes`
2701
- Matplotlib axes where tool handles are displayed.
2701
+ Matplotlib Axes where tool handles are displayed.
2702
2702
x, y : 1D arrays
2703
2703
Coordinates of control handles.
2704
2704
marker : str, default: 'o'
@@ -3472,7 +3472,7 @@ class LassoSelector(_SelectorWidget):
3472
3472
3473
3473
In contrast to `Lasso`, `LassoSelector` is written with an interface
3474
3474
similar to `RectangleSelector` and `SpanSelector`, and will continue to
3475
- interact with the axes until disconnected.
3475
+ interact with the Axes until disconnected.
3476
3476
3477
3477
Example usage::
3478
3478
@@ -3486,7 +3486,7 @@ def onselect(verts):
3486
3486
Parameters
3487
3487
----------
3488
3488
ax : `~matplotlib.axes.Axes`
3489
- The parent axes for the widget.
3489
+ The parent Axes for the widget.
3490
3490
onselect : function
3491
3491
Whenever the lasso is released, the *onselect* function is called and
3492
3492
passed the vertices of the selected path.
@@ -3557,7 +3557,7 @@ class PolygonSelector(_SelectorWidget):
3557
3557
3558
3558
- Hold *ctrl* and click and drag a vertex to reposition it before the
3559
3559
polygon has been completed.
3560
- - Hold the *shift* key and click and drag anywhere in the axes to move
3560
+ - Hold the *shift* key and click and drag anywhere in the Axes to move
3561
3561
all vertices.
3562
3562
- Press the *esc* key to start a new polygon.
3563
3563
@@ -3566,7 +3566,7 @@ class PolygonSelector(_SelectorWidget):
3566
3566
Parameters
3567
3567
----------
3568
3568
ax : `~matplotlib.axes.Axes`
3569
- The parent axes for the widget.
3569
+ The parent Axes for the widget.
3570
3570
3571
3571
onselect : function
3572
3572
When a polygon is completed or modified after completion,
@@ -3928,7 +3928,7 @@ class Lasso(AxesWidget):
3928
3928
Parameters
3929
3929
----------
3930
3930
ax : `~matplotlib.axes.Axes`
3931
- The parent axes for the widget.
3931
+ The parent Axes for the widget.
3932
3932
xy : (float, float)
3933
3933
Coordinates of the start of the lasso.
3934
3934
useblit : bool, default: True
0 commit comments