@@ -1903,6 +1903,8 @@ def text(self, x, y, z, s, zdir=None, *, axlim_clip=False, **kwargs):
1903
1903
See `.get_dir_vector` for a description of the values.
1904
1904
axlim_clip : bool, default: False
1905
1905
Whether to hide text that is outside the axes view limits.
1906
+
1907
+ .. versionadded:: 3.10
1906
1908
**kwargs
1907
1909
Other arguments are forwarded to `matplotlib.axes.Axes.text`.
1908
1910
@@ -1935,6 +1937,8 @@ def plot(self, xs, ys, *args, zdir='z', axlim_clip=False, **kwargs):
1935
1937
When plotting 2D data, the direction to use as z.
1936
1938
axlim_clip : bool, default: False
1937
1939
Whether to hide data that is outside the axes view limits.
1940
+
1941
+ .. versionadded:: 3.10
1938
1942
**kwargs
1939
1943
Other arguments are forwarded to `matplotlib.axes.Axes.plot`.
1940
1944
"""
@@ -2013,6 +2017,8 @@ def fill_between(self, x1, y1, z1, x2, y2, z2, *,
2013
2017
axlim_clip : bool, default: False
2014
2018
Whether to hide data that is outside the axes view limits.
2015
2019
2020
+ .. versionadded:: 3.10
2021
+
2016
2022
**kwargs
2017
2023
All other keyword arguments are passed on to `.Poly3DCollection`.
2018
2024
@@ -2158,6 +2164,8 @@ def plot_surface(self, X, Y, Z, *, norm=None, vmin=None,
2158
2164
axlim_clip : bool, default: False
2159
2165
Whether to hide patches with a vertex outside the axes view limits.
2160
2166
2167
+ .. versionadded:: 3.10
2168
+
2161
2169
**kwargs
2162
2170
Other keyword arguments are forwarded to `.Poly3DCollection`.
2163
2171
"""
@@ -2306,6 +2314,8 @@ def plot_wireframe(self, X, Y, Z, *, axlim_clip=False, **kwargs):
2306
2314
Whether to hide lines and patches with vertices outside the axes
2307
2315
view limits.
2308
2316
2317
+ .. versionadded:: 3.10
2318
+
2309
2319
rcount, ccount : int
2310
2320
Maximum number of samples used in each direction. If the input
2311
2321
data is larger, it will be downsampled (by slicing) to these
@@ -2453,6 +2463,8 @@ def plot_trisurf(self, *args, color=None, norm=None, vmin=None, vmax=None,
2453
2463
The lightsource to use when *shade* is True.
2454
2464
axlim_clip : bool, default: False
2455
2465
Whether to hide patches with a vertex outside the axes view limits.
2466
+
2467
+ .. versionadded:: 3.10
2456
2468
**kwargs
2457
2469
All other keyword arguments are passed on to
2458
2470
:class:`~mpl_toolkits.mplot3d.art3d.Poly3DCollection`
@@ -2596,6 +2608,8 @@ def contour(self, X, Y, Z, *args,
2596
2608
position in a plane normal to *zdir*.
2597
2609
axlim_clip : bool, default: False
2598
2610
Whether to hide lines with a vertex outside the axes view limits.
2611
+
2612
+ .. versionadded:: 3.10
2599
2613
data : indexable object, optional
2600
2614
DATA_PARAMETER_PLACEHOLDER
2601
2615
@@ -2643,6 +2657,8 @@ def tricontour(self, *args,
2643
2657
position in a plane normal to *zdir*.
2644
2658
axlim_clip : bool, default: False
2645
2659
Whether to hide lines with a vertex outside the axes view limits.
2660
+
2661
+ .. versionadded:: 3.10
2646
2662
data : indexable object, optional
2647
2663
DATA_PARAMETER_PLACEHOLDER
2648
2664
*args, **kwargs
@@ -2700,6 +2716,8 @@ def contourf(self, X, Y, Z, *args,
2700
2716
position in a plane normal to *zdir*.
2701
2717
axlim_clip : bool, default: False
2702
2718
Whether to hide lines with a vertex outside the axes view limits.
2719
+
2720
+ .. versionadded:: 3.10
2703
2721
data : indexable object, optional
2704
2722
DATA_PARAMETER_PLACEHOLDER
2705
2723
*args, **kwargs
@@ -2740,6 +2758,8 @@ def tricontourf(self, *args, zdir='z', offset=None, axlim_clip=False, **kwargs):
2740
2758
position in a plane normal to zdir.
2741
2759
axlim_clip : bool, default: False
2742
2760
Whether to hide lines with a vertex outside the axes view limits.
2761
+
2762
+ .. versionadded:: 3.10
2743
2763
data : indexable object, optional
2744
2764
DATA_PARAMETER_PLACEHOLDER
2745
2765
*args, **kwargs
@@ -2798,6 +2818,8 @@ def add_collection3d(self, col, zs=0, zdir='z', autolim=True, *,
2798
2818
Whether to update the data limits.
2799
2819
axlim_clip : bool, default: False
2800
2820
Whether to hide the scatter points outside the axes view limits.
2821
+
2822
+ .. versionadded:: 3.10
2801
2823
"""
2802
2824
had_data = self .has_data ()
2803
2825
@@ -2879,6 +2901,8 @@ def scatter(self, xs, ys,
2879
2901
independently.
2880
2902
axlim_clip : bool, default: False
2881
2903
Whether to hide the scatter points outside the axes view limits.
2904
+
2905
+ .. versionadded:: 3.10
2882
2906
data : indexable object, optional
2883
2907
DATA_PARAMETER_PLACEHOLDER
2884
2908
**kwargs
@@ -2938,6 +2962,8 @@ def bar(self, left, height, zs=0, zdir='z', *args,
2938
2962
When plotting 2D data, the direction to use as z ('x', 'y' or 'z').
2939
2963
axlim_clip : bool, default: False
2940
2964
Whether to hide bars with points outside the axes view limits.
2965
+
2966
+ .. versionadded:: 3.10
2941
2967
data : indexable object, optional
2942
2968
DATA_PARAMETER_PLACEHOLDER
2943
2969
**kwargs
@@ -3030,6 +3056,8 @@ def bar3d(self, x, y, z, dx, dy, dz, color=None,
3030
3056
axlim_clip : bool, default: False
3031
3057
Whether to hide the bars with points outside the axes view limits.
3032
3058
3059
+ .. versionadded:: 3.10
3060
+
3033
3061
data : indexable object, optional
3034
3062
DATA_PARAMETER_PLACEHOLDER
3035
3063
@@ -3188,6 +3216,8 @@ def quiver(self, X, Y, Z, U, V, W, *,
3188
3216
axlim_clip : bool, default: False
3189
3217
Whether to hide arrows with points outside the axes view limits.
3190
3218
3219
+ .. versionadded:: 3.10
3220
+
3191
3221
data : indexable object, optional
3192
3222
DATA_PARAMETER_PLACEHOLDER
3193
3223
@@ -3329,6 +3359,8 @@ def voxels(self, *args, facecolors=None, edgecolors=None, shade=True,
3329
3359
axlim_clip : bool, default: False
3330
3360
Whether to hide voxels with points outside the axes view limits.
3331
3361
3362
+ .. versionadded:: 3.10
3363
+
3332
3364
**kwargs
3333
3365
Additional keyword arguments to pass onto
3334
3366
`~mpl_toolkits.mplot3d.art3d.Poly3DCollection`.
@@ -3577,6 +3609,8 @@ def errorbar(self, x, y, z, zerr=None, yerr=None, xerr=None, fmt='',
3577
3609
axlim_clip : bool, default: False
3578
3610
Whether to hide error bars that are outside the axes limits.
3579
3611
3612
+ .. versionadded:: 3.10
3613
+
3580
3614
Returns
3581
3615
-------
3582
3616
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