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