Drawing the label with value for last point in a Line sereis
Drawing the label with value for last point in a Line sereis
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
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Luke,
You can use GetSeriesMark event like this:
You can use GetSeriesMark event like this:
Code: Select all
void line1_GetSeriesMark(Steema.TeeChart.Styles.Series series, Steema.TeeChart.Styles.GetSeriesMarkEventArgs e)
{
if (e.ValueIndex < series.Count -1)
{
e.MarkText = "";
}
}
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |