Sets the Text for the Legend values.
public String Text {get; set;}

Remarks


The Text property is used to specify the text that appears for the values in the Legend.

Example


[C]

private void tChart1_GetLegendText(object sender, Steema.TeeChart.TChart.GetLegendTextEventArgs e) 
{
     if (e.Index < 3)
        e.Text = e.Text + " my text";
}

See Also

GetLegendTextEventArgs Class | GetLegendTextEventArgs Members | Steema.TeeChart Namespace