You are reading an old version of the documentation (v3.0.0). For the latest version see https://matplotlib.org/stable/api/_as_gen/mpl_toolkits.mplot3d.art3d.Text3D.html
Version 3.0.0
matplotlib
Fork me on GitHub

mpl_toolkits.mplot3d.art3d.Text3D

class mpl_toolkits.mplot3d.art3d.Text3D(x=0, y=0, z=0, text='', zdir='z', **kwargs)[source]

Bases: matplotlib.text.Text

Text object with 3D position and direction.

Parameters:
x, y, z

The position of the text.

text : str

The text string to display.

zdir : {'x', 'y', 'z', None, 3-tuple}

The direction of the text. See get_dir_vector for a description of the values.

Other Parameters:
**kwargs

All other parameters are passed on to Text.

draw(renderer)[source]

Draws the Text object to the given renderer.

set_3d_properties(z=0, zdir='z')[source]