@@ -2594,10 +2594,10 @@ def contour(self, X, Y, Z, *args,
2594
2594
offset : float, optional
2595
2595
If specified, plot a projection of the contour lines at this
2596
2596
position in a plane normal to *zdir*.
2597
- data : indexable object, optional
2598
- DATA_PARAMETER_PLACEHOLDER
2599
2597
axlim_clip : bool, default: False
2600
2598
Whether to hide lines with a vertex outside the axes view limits.
2599
+ data : indexable object, optional
2600
+ DATA_PARAMETER_PLACEHOLDER
2601
2601
2602
2602
*args, **kwargs
2603
2603
Other arguments are forwarded to `matplotlib.axes.Axes.contour`.
@@ -2641,10 +2641,10 @@ def tricontour(self, *args,
2641
2641
offset : float, optional
2642
2642
If specified, plot a projection of the contour lines at this
2643
2643
position in a plane normal to *zdir*.
2644
- data : indexable object, optional
2645
- DATA_PARAMETER_PLACEHOLDER
2646
2644
axlim_clip : bool, default: False
2647
2645
Whether to hide lines with a vertex outside the axes view limits.
2646
+ data : indexable object, optional
2647
+ DATA_PARAMETER_PLACEHOLDER
2648
2648
*args, **kwargs
2649
2649
Other arguments are forwarded to `matplotlib.axes.Axes.tricontour`.
2650
2650
@@ -2698,10 +2698,10 @@ def contourf(self, X, Y, Z, *args,
2698
2698
offset : float, optional
2699
2699
If specified, plot a projection of the contour lines at this
2700
2700
position in a plane normal to *zdir*.
2701
- data : indexable object, optional
2702
- DATA_PARAMETER_PLACEHOLDER
2703
2701
axlim_clip : bool, default: False
2704
2702
Whether to hide lines with a vertex outside the axes view limits.
2703
+ data : indexable object, optional
2704
+ DATA_PARAMETER_PLACEHOLDER
2705
2705
*args, **kwargs
2706
2706
Other arguments are forwarded to `matplotlib.axes.Axes.contourf`.
2707
2707
@@ -2738,10 +2738,10 @@ def tricontourf(self, *args, zdir='z', offset=None, axlim_clip=False, **kwargs):
2738
2738
offset : float, optional
2739
2739
If specified, plot a projection of the contour lines at this
2740
2740
position in a plane normal to zdir.
2741
- data : indexable object, optional
2742
- DATA_PARAMETER_PLACEHOLDER
2743
2741
axlim_clip : bool, default: False
2744
2742
Whether to hide lines with a vertex outside the axes view limits.
2743
+ data : indexable object, optional
2744
+ DATA_PARAMETER_PLACEHOLDER
2745
2745
*args, **kwargs
2746
2746
Other arguments are forwarded to
2747
2747
`matplotlib.axes.Axes.tricontourf`.
@@ -2936,10 +2936,10 @@ def bar(self, left, height, zs=0, zdir='z', *args,
2936
2936
used for all bars.
2937
2937
zdir : {'x', 'y', 'z'}, default: 'z'
2938
2938
When plotting 2D data, the direction to use as z ('x', 'y' or 'z').
2939
- data : indexable object, optional
2940
- DATA_PARAMETER_PLACEHOLDER
2941
2939
axlim_clip : bool, default: False
2942
2940
Whether to hide bars with points outside the axes view limits.
2941
+ data : indexable object, optional
2942
+ DATA_PARAMETER_PLACEHOLDER
2943
2943
**kwargs
2944
2944
Other keyword arguments are forwarded to
2945
2945
`matplotlib.axes.Axes.bar`.
@@ -3027,12 +3027,12 @@ def bar3d(self, x, y, z, dx, dy, dz, color=None,
3027
3027
lightsource : `~matplotlib.colors.LightSource`, optional
3028
3028
The lightsource to use when *shade* is True.
3029
3029
3030
- data : indexable object, optional
3031
- DATA_PARAMETER_PLACEHOLDER
3032
-
3033
3030
axlim_clip : bool, default: False
3034
3031
Whether to hide the bars with points outside the axes view limits.
3035
3032
3033
+ data : indexable object, optional
3034
+ DATA_PARAMETER_PLACEHOLDER
3035
+
3036
3036
**kwargs
3037
3037
Any additional keyword arguments are passed onto
3038
3038
`~.art3d.Poly3DCollection`.
@@ -3185,12 +3185,12 @@ def quiver(self, X, Y, Z, U, V, W, *,
3185
3185
Whether all arrows are normalized to have the same length, or keep
3186
3186
the lengths defined by *u*, *v*, and *w*.
3187
3187
3188
- data : indexable object, optional
3189
- DATA_PARAMETER_PLACEHOLDER
3190
-
3191
3188
axlim_clip : bool, default: False
3192
3189
Whether to hide arrows with points outside the axes view limits.
3193
3190
3191
+ data : indexable object, optional
3192
+ DATA_PARAMETER_PLACEHOLDER
3193
+
3194
3194
**kwargs
3195
3195
Any additional keyword arguments are delegated to
3196
3196
:class:`.Line3DCollection`
@@ -3890,12 +3890,12 @@ def stem(self, x, y, z, *, linefmt='C0-', markerfmt='C0o', basefmt='C3-',
3890
3890
orientation : {'x', 'y', 'z'}, default: 'z'
3891
3891
The direction along which stems are drawn.
3892
3892
3893
- data : indexable object, optional
3894
- DATA_PARAMETER_PLACEHOLDER
3895
-
3896
3893
axlim_clip : bool, default: False
3897
3894
Whether to hide stems that are outside the axes limits.
3898
3895
3896
+ data : indexable object, optional
3897
+ DATA_PARAMETER_PLACEHOLDER
3898
+
3899
3899
Returns
3900
3900
-------
3901
3901
`.StemContainer`
0 commit comments