@@ -1592,6 +1592,7 @@ class Cursor(AxesWidget):
1592
1592
Whether to draw the vertical line.
1593
1593
useblit : bool, default: False
1594
1594
Use blitting for faster drawing if supported by the backend.
1595
+ See the tutorial :doc:`/tutorials/advanced/blitting` for details.
1595
1596
1596
1597
Other Parameters
1597
1598
----------------
@@ -1687,6 +1688,7 @@ class MultiCursor(Widget):
1687
1688
1688
1689
useblit : bool, default: True
1689
1690
Use blitting for faster drawing if supported by the backend.
1691
+ See the tutorial :doc:`/tutorials/advanced/blitting` for details.
1690
1692
1691
1693
horizOn : bool, default: False
1692
1694
Whether to draw the horizontal line.
@@ -2093,7 +2095,8 @@ def on_select(min: float, max: float) -> Any
2093
2095
2094
2096
useblit : bool, default: False
2095
2097
If True, use the backend-dependent blitting features for faster
2096
- canvas updates.
2098
+ canvas updates. See the tutorial :doc:`/tutorials/advanced/blitting`
2099
+ for details.
2097
2100
2098
2101
props : dict, optional
2099
2102
Dictionary of `matplotlib.patches.Patch` properties.
@@ -2502,7 +2505,8 @@ class ToolLineHandles:
2502
2505
Additional line properties. See `matplotlib.lines.Line2D`.
2503
2506
useblit : bool, default: True
2504
2507
Whether to use blitting for faster drawing (if supported by the
2505
- backend).
2508
+ backend). See the tutorial :doc:`/tutorials/advanced/blitting`
2509
+ for details.
2506
2510
"""
2507
2511
2508
2512
def __init__ (self , ax , positions , direction , line_props = None ,
@@ -2609,7 +2613,8 @@ class ToolHandles:
2609
2613
Additional marker properties. See `matplotlib.lines.Line2D`.
2610
2614
useblit : bool, default: True
2611
2615
Whether to use blitting for faster drawing (if supported by the
2612
- backend).
2616
+ backend). See the tutorial :doc:`/tutorials/advanced/blitting`
2617
+ for details.
2613
2618
"""
2614
2619
2615
2620
def __init__ (self , ax , x , y , marker = 'o' , marker_props = None , useblit = True ):
@@ -2684,7 +2689,8 @@ def onselect(eclick: MouseEvent, erelease: MouseEvent)
2684
2689
2685
2690
useblit : bool, default: False
2686
2691
Whether to use blitting for faster drawing (if supported by the
2687
- backend).
2692
+ backend). See the tutorial :doc:`/tutorials/advanced/blitting`
2693
+ for details.
2688
2694
2689
2695
props : dict, optional
2690
2696
Properties with which the __ARTIST_NAME__ is drawn. See
@@ -3240,7 +3246,8 @@ def onselect(verts):
3240
3246
passed the vertices of the selected path.
3241
3247
useblit : bool, default: True
3242
3248
Whether to use blitting for faster drawing (if supported by the
3243
- backend).
3249
+ backend). See the tutorial :doc:`/tutorials/advanced/blitting`
3250
+ for details.
3244
3251
props : dict, optional
3245
3252
Properties with which the line is drawn, see `matplotlib.lines.Line2D`
3246
3253
for valid properties. Default values are defined in ``mpl.rcParams``.
@@ -3322,7 +3329,8 @@ class PolygonSelector(_SelectorWidget):
3322
3329
3323
3330
useblit : bool, default: False
3324
3331
Whether to use blitting for faster drawing (if supported by the
3325
- backend).
3332
+ backend). See the tutorial :doc:`/tutorials/advanced/blitting`
3333
+ for details.
3326
3334
3327
3335
props : dict, optional
3328
3336
Properties with which the line is drawn, see `matplotlib.lines.Line2D`
@@ -3589,7 +3597,8 @@ class Lasso(AxesWidget):
3589
3597
Coordinates of the start of the lasso.
3590
3598
useblit : bool, default: True
3591
3599
Whether to use blitting for faster drawing (if supported by the
3592
- backend).
3600
+ backend). See the tutorial :doc:`/tutorials/advanced/blitting`
3601
+ for details.
3593
3602
callback : callable
3594
3603
Whenever the lasso is released, the *callback* function is called and
3595
3604
passed the vertices of the selected path.
0 commit comments