public String[] StringItems()
Remarks
Useful for obtaining the string names of all the Chart axes. Example
[C#]
private void button1_Click(object sender, System.EventArgs e) {
string[] axes = tChart1.Axes.StringItems();
string listAxes="";
foreach(string s in axes) {
listAxes = s + " " + listAxes;
}
MessageBox.Show(listAxes);
}
See Also
Axes Class | Axes Members | Steema.TeeChart Namespace