File tree 3 files changed +12
-4
lines changed
3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,12 @@ class Axes(_AxesBase):
55
55
are 'xlim_changed' and 'ylim_changed' and the callback will be called with
56
56
func(*ax*) where *ax* is the `Axes` instance.
57
57
58
+ .. note::
59
+
60
+ As a user, you do not instantiate Axes directly, but use Axes creation
61
+ methods instead; e.g. from `.pyplot` or `.Figure`:
62
+ `~.pyplot.subplots`, `~.pyplot.subplot_mosaic` or `.Figure.add_axes`.
63
+
58
64
Attributes
59
65
----------
60
66
dataLim : `.Bbox`
Original file line number Diff line number Diff line change 45
45
class Axes3D (Axes ):
46
46
"""
47
47
3D Axes object.
48
+
49
+ .. note::
50
+
51
+ As a user, you do not instantiate Axes directly, but use Axes creation
52
+ methods instead; e.g. from `.pyplot` or `.Figure`:
53
+ `~.pyplot.subplots`, `~.pyplot.subplot_mosaic` or `.Figure.add_axes`.
48
54
"""
49
55
name = '3d'
50
56
Original file line number Diff line number Diff line change 24
24
:target: ../../gallery/mplot3d/subplot3d.html
25
25
:align: center
26
26
27
- .. versionchanged:: 1.0.0
28
- Prior to Matplotlib 1.0.0, only a single `.Axes3D` could be created per
29
- figure; it needed to be directly instantiated as ``ax = Axes3D(fig)``.
30
-
31
27
.. versionchanged:: 3.2.0
32
28
Prior to Matplotlib 3.2.0, it was necessary to explicitly import the
33
29
:mod:`mpl_toolkits.mplot3d` module to make the '3d' projection to
You can’t perform that action at this time.
0 commit comments