graphinglib.Text#
- class graphinglib.Text(x: float, y: float, text: str, color: str = 'default', font_size: float | Literal['same as figure'] = 'same as figure', h_align: str = 'default', v_align: str = 'default')[source]#
This class allows text to be plotted.
It is also possible to attach an arrow to the
Textwith the methodattach_arrow()to point at something of interest in the plot.- Parameters:
- x, yfloat
The x and y coordinates at which to plot the
Text.- textstr
The text to be plotted.
- colorstr
Color of the text. Default depends on the
figure_styleconfiguration.- font_sizefloat
Font size of the text. Default depends on the
figure_styleconfiguration.- h_align, v_alignstr
Horizontal and vertical alignment of the text. Default depends on the
figure_styleconfiguration.
Methods