File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed
Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,12 @@ class Axes(_AxesBase):
5555 are 'xlim_changed' and 'ylim_changed' and the callback will be called with
5656 func(*ax*) where *ax* is the `Axes` instance.
5757
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+
5864 Attributes
5965 ----------
6066 dataLim : `.Bbox`
Original file line number Diff line number Diff line change 4545class Axes3D (Axes ):
4646 """
4747 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`.
4854 """
4955 name = '3d'
5056
Original file line number Diff line number Diff line change 2424 :target: ../../gallery/mplot3d/subplot3d.html
2525 :align: center
2626
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-
3127.. versionchanged:: 3.2.0
3228 Prior to Matplotlib 3.2.0, it was necessary to explicitly import the
3329 :mod:`mpl_toolkits.mplot3d` module to make the '3d' projection to
You can’t perform that action at this time.
0 commit comments