@@ -1902,6 +1902,8 @@ def text(self, x, y, z, s, zdir=None, *, axlim_clip=False, **kwargs):
1902
1902
See `.get_dir_vector` for a description of the values.
1903
1903
axlim_clip : bool, default: False
1904
1904
Whether to hide text that is outside the axes view limits.
1905
+
1906
+ .. versionadded:: 3.10
1905
1907
**kwargs
1906
1908
Other arguments are forwarded to `matplotlib.axes.Axes.text`.
1907
1909
@@ -1934,6 +1936,8 @@ def plot(self, xs, ys, *args, zdir='z', axlim_clip=False, **kwargs):
1934
1936
When plotting 2D data, the direction to use as z.
1935
1937
axlim_clip : bool, default: False
1936
1938
Whether to hide data that is outside the axes view limits.
1939
+
1940
+ .. versionadded:: 3.10
1937
1941
**kwargs
1938
1942
Other arguments are forwarded to `matplotlib.axes.Axes.plot`.
1939
1943
"""
@@ -2012,6 +2016,8 @@ def fill_between(self, x1, y1, z1, x2, y2, z2, *,
2012
2016
axlim_clip : bool, default: False
2013
2017
Whether to hide data that is outside the axes view limits.
2014
2018
2019
+ .. versionadded:: 3.10
2020
+
2015
2021
**kwargs
2016
2022
All other keyword arguments are passed on to `.Poly3DCollection`.
2017
2023
@@ -2157,6 +2163,8 @@ def plot_surface(self, X, Y, Z, *, norm=None, vmin=None,
2157
2163
axlim_clip : bool, default: False
2158
2164
Whether to hide patches with a vertex outside the axes view limits.
2159
2165
2166
+ .. versionadded:: 3.10
2167
+
2160
2168
**kwargs
2161
2169
Other keyword arguments are forwarded to `.Poly3DCollection`.
2162
2170
"""
@@ -2305,6 +2313,8 @@ def plot_wireframe(self, X, Y, Z, *, axlim_clip=False, **kwargs):
2305
2313
Whether to hide lines and patches with vertices outside the axes
2306
2314
view limits.
2307
2315
2316
+ .. versionadded:: 3.10
2317
+
2308
2318
rcount, ccount : int
2309
2319
Maximum number of samples used in each direction. If the input
2310
2320
data is larger, it will be downsampled (by slicing) to these
@@ -2452,6 +2462,8 @@ def plot_trisurf(self, *args, color=None, norm=None, vmin=None, vmax=None,
2452
2462
The lightsource to use when *shade* is True.
2453
2463
axlim_clip : bool, default: False
2454
2464
Whether to hide patches with a vertex outside the axes view limits.
2465
+
2466
+ .. versionadded:: 3.10
2455
2467
**kwargs
2456
2468
All other keyword arguments are passed on to
2457
2469
:class:`~mpl_toolkits.mplot3d.art3d.Poly3DCollection`
@@ -2595,6 +2607,8 @@ def contour(self, X, Y, Z, *args,
2595
2607
position in a plane normal to *zdir*.
2596
2608
axlim_clip : bool, default: False
2597
2609
Whether to hide lines with a vertex outside the axes view limits.
2610
+
2611
+ .. versionadded:: 3.10
2598
2612
data : indexable object, optional
2599
2613
DATA_PARAMETER_PLACEHOLDER
2600
2614
@@ -2642,6 +2656,8 @@ def tricontour(self, *args,
2642
2656
position in a plane normal to *zdir*.
2643
2657
axlim_clip : bool, default: False
2644
2658
Whether to hide lines with a vertex outside the axes view limits.
2659
+
2660
+ .. versionadded:: 3.10
2645
2661
data : indexable object, optional
2646
2662
DATA_PARAMETER_PLACEHOLDER
2647
2663
*args, **kwargs
@@ -2699,6 +2715,8 @@ def contourf(self, X, Y, Z, *args,
2699
2715
position in a plane normal to *zdir*.
2700
2716
axlim_clip : bool, default: False
2701
2717
Whether to hide lines with a vertex outside the axes view limits.
2718
+
2719
+ .. versionadded:: 3.10
2702
2720
data : indexable object, optional
2703
2721
DATA_PARAMETER_PLACEHOLDER
2704
2722
*args, **kwargs
@@ -2739,6 +2757,8 @@ def tricontourf(self, *args, zdir='z', offset=None, axlim_clip=False, **kwargs):
2739
2757
position in a plane normal to zdir.
2740
2758
axlim_clip : bool, default: False
2741
2759
Whether to hide lines with a vertex outside the axes view limits.
2760
+
2761
+ .. versionadded:: 3.10
2742
2762
data : indexable object, optional
2743
2763
DATA_PARAMETER_PLACEHOLDER
2744
2764
*args, **kwargs
@@ -2797,6 +2817,8 @@ def add_collection3d(self, col, zs=0, zdir='z', autolim=True, *,
2797
2817
Whether to update the data limits.
2798
2818
axlim_clip : bool, default: False
2799
2819
Whether to hide the scatter points outside the axes view limits.
2820
+
2821
+ .. versionadded:: 3.10
2800
2822
"""
2801
2823
had_data = self .has_data ()
2802
2824
@@ -2878,6 +2900,8 @@ def scatter(self, xs, ys,
2878
2900
independently.
2879
2901
axlim_clip : bool, default: False
2880
2902
Whether to hide the scatter points outside the axes view limits.
2903
+
2904
+ .. versionadded:: 3.10
2881
2905
data : indexable object, optional
2882
2906
DATA_PARAMETER_PLACEHOLDER
2883
2907
**kwargs
@@ -2937,6 +2961,8 @@ def bar(self, left, height, zs=0, zdir='z', *args,
2937
2961
When plotting 2D data, the direction to use as z ('x', 'y' or 'z').
2938
2962
axlim_clip : bool, default: False
2939
2963
Whether to hide bars with points outside the axes view limits.
2964
+
2965
+ .. versionadded:: 3.10
2940
2966
data : indexable object, optional
2941
2967
DATA_PARAMETER_PLACEHOLDER
2942
2968
**kwargs
@@ -3029,6 +3055,8 @@ def bar3d(self, x, y, z, dx, dy, dz, color=None,
3029
3055
axlim_clip : bool, default: False
3030
3056
Whether to hide the bars with points outside the axes view limits.
3031
3057
3058
+ .. versionadded:: 3.10
3059
+
3032
3060
data : indexable object, optional
3033
3061
DATA_PARAMETER_PLACEHOLDER
3034
3062
@@ -3187,6 +3215,8 @@ def quiver(self, X, Y, Z, U, V, W, *,
3187
3215
axlim_clip : bool, default: False
3188
3216
Whether to hide arrows with points outside the axes view limits.
3189
3217
3218
+ .. versionadded:: 3.10
3219
+
3190
3220
data : indexable object, optional
3191
3221
DATA_PARAMETER_PLACEHOLDER
3192
3222
@@ -3328,6 +3358,8 @@ def voxels(self, *args, facecolors=None, edgecolors=None, shade=True,
3328
3358
axlim_clip : bool, default: False
3329
3359
Whether to hide voxels with points outside the axes view limits.
3330
3360
3361
+ .. versionadded:: 3.10
3362
+
3331
3363
**kwargs
3332
3364
Additional keyword arguments to pass onto
3333
3365
`~mpl_toolkits.mplot3d.art3d.Poly3DCollection`.
@@ -3576,6 +3608,8 @@ def errorbar(self, x, y, z, zerr=None, yerr=None, xerr=None, fmt='',
3576
3608
axlim_clip : bool, default: False
3577
3609
Whether to hide error bars that are outside the axes limits.
3578
3610
3611
+ .. versionadded:: 3.10
3612
+
3579
3613
Returns
3580
3614
-------
3581
3615
errlines : list
@@ -3893,6 +3927,8 @@ def stem(self, x, y, z, *, linefmt='C0-', markerfmt='C0o', basefmt='C3-',
3893
3927
axlim_clip : bool, default: False
3894
3928
Whether to hide stems that are outside the axes limits.
3895
3929
3930
+ .. versionadded:: 3.10
3931
+
3896
3932
data : indexable object, optional
3897
3933
DATA_PARAMETER_PLACEHOLDER
3898
3934
0 commit comments