Drawing the label with value for last point in a Line sereis
Posted: Tue Nov 18, 2008 2:12 pm
if I have 40 values for a line how do I get a mark to appear for only the very last point of the line. thx
Steema Software - Customer Support Forums
http://216.92.101.67/support/
Code: Select all
void line1_GetSeriesMark(Steema.TeeChart.Styles.Series series, Steema.TeeChart.Styles.GetSeriesMarkEventArgs e)
{
if (e.ValueIndex < series.Count -1)
{
e.MarkText = "";
}
}