ChartDirector 7.0 (Python Edition)

BaseChart.addText


Usage

addText(x, y, text [, font [, fontSize [, fontColor [, alignment [, angle ]]]]])

Description

Adds a text box to the chart.

By default, only the text is visible, the box is transparent. This method returns a TextBox object that can be used to change the appearance of the text box.

Arguments

ArgumentDefaultDescription
x(Mandatory)The x pixel coordinate of the left of the text box.
y(Mandatory)The y pixel coordinate of the top of the text box.
text(Mandatory)The text to shown in the text box. CDML
font""The font used to draw the text. See Font Specification for details on various font attributes.
fontSize8The font size used to draw the text.
fontColorTextColorThe color used to draw the text.
alignmentTopLeftThe alignment of the text within the text box. See Alignment Specification for supported alignment types.
angle0The rotation angle of the text within the text box.

Return Value

A TextBox object representing the text box. This may be used to fine-tune the appearance of the text box.