`); Plot typesUser guideTutorialsExamplesReferenceContributeReleases GitterGitter DiscourseDiscourse GitHubGitHubPlot typesUser guideTutorialsExamplesReferenceContributeReleases GitterGitter DiscourseDiscourse GitHubGitHubSection Navigationmatplotlibmatplotlibmatplotlib.animationmatplotlib.animationmatplotlib.animation.Animationmatplotlib.animation.FuncAnimationmatplotlib.animation.ArtistAnimationmatplotlib.animation.Pi..." />`); Plot typesUser guideTutorialsExamplesReferenceContributeReleases GitterGitter DiscourseDiscourse GitHubGitHubPlot typesUser guideTutorialsExamplesReferenceContributeReleases GitterGitter DiscourseDiscourse GitHubGitHubSection Navigationmatplotlibmatplotlibmatplotlib.animationmatplotlib.animationmatplotlib.animation.Animationmatplotlib.animation.FuncAnimationmatplotlib.animation.ArtistAnimationmatplotlib.animation.Pi..." />
mpl_toolkits.mplot3d.axes3d.Axes3D.text3D — Matplotlib 3.11.0.dev906+gcf6069a0d5 documentation
mpl_toolkits.mplot3d.axes3d.Axes3D.text3D
-
Axes3D.text3D(x, y, z, s, zdir=None, *, axlim_clip=False, **kwargs)[source]
Add the text s to the 3D Axes at location x, y, z in data coordinates.
- Parameters:
- x, y, zfloat
The position to place the text.
- sstr
The text.
- zdir{'x', 'y', 'z', 3-tuple}, optional
The direction to be used as the z-direction. Default: 'z'.
See get_dir_vector
for a description of the values.
- axlim_clipbool, default: False
Whether to hide text that is outside the axes view limits.
- **kwargs
Other arguments are forwarded to matplotlib.axes.Axes.text
.
- Returns:
Text3D
The created Text3D
instance.