public String[] Text {get; set;}
Remarks
The Text property is used by ShapeSeries class to display customized strings inside Shapes.
You can use the Font and Aligment properties to control Text display.
Note: You may need to change Shape Font size to a different value when creating metafiles or when zooming Charts.
Example
[C#]
string[] shapeSeriesText = new string[1];
shapeSeriesText[0] = "MY TEXT";
shapeSeries1.Text = shapeSeriesText;
See Also
Shape Class | Shape Members | Steema.TeeChart.Styles Namespace