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.TextText 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_vectorfor a description of the values.Other Parameters: **kwargs
All other parameters are passed on to
Text.Create a
Textinstance at x, y with string text.Valid keyword arguments are:
Property Description agg_filtera filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array alphafloat or None animatedbool backgroundcolorcolor bboxdict with properties for patches.FancyBboxPatchclip_boxBboxclip_onbool clip_pathPatch or (Path, Transform) or None coloror ccolor containscallable figureFigurefontfamilyor family{FONTNAME, 'serif', 'sans-serif', 'cursive', 'fantasy', 'monospace'} fontpropertiesor font_propertiesfont_manager.FontPropertiesfontsizeor size{size in points, 'xx-small', 'x-small', 'small', 'medium', 'large', 'x-large', 'xx-large'} fontstretchor stretch{a numeric value in range 0-1000, 'ultra-condensed', 'extra-condensed', 'condensed', 'semi-condensed', 'normal', 'semi-expanded', 'expanded', 'extra-expanded', 'ultra-expanded'} fontstyleor style{'normal', 'italic', 'oblique'} fontvariantor variant{'normal', 'small-caps'} fontweightor weight{a numeric value in range 0-1000, 'ultralight', 'light', 'normal', 'regular', 'book', 'medium', 'roman', 'semibold', 'demibold', 'demi', 'bold', 'heavy', 'extra bold', 'black'} gidstr horizontalalignmentor ha{'center', 'right', 'left'} in_layoutbool labelobject linespacingfloat (multiple of font size) multialignmentor ma{'left', 'right', 'center'} path_effectsAbstractPathEffectpickerNone or bool or float or callable position(float, float) rasterizedbool or None rotation{angle in degrees, 'vertical', 'horizontal'} rotation_mode{None, 'default', 'anchor'} sketch_params(scale: float, length: float, randomness: float) snapbool or None textobject transformTransformurlstr usetexbool or None verticalalignmentor va{'center', 'top', 'bottom', 'baseline', 'center_baseline'} visiblebool wrapbool xfloat yfloat zorderfloat -
get_tightbbox(renderer)[source]¶ Like
Artist.get_window_extent, but includes any clipping.Parameters: renderer :
RendererBaseinstancerenderer that will be used to draw the figures (i.e.
fig.canvas.get_renderer())Returns: bbox :
BboxThe enclosing bounding box (in figure pixel co-ordinates).
-