Selectively Display Series Marks
Posted: Mon May 24, 2004 3:54 am
Is there a way to selectively display\hide individual series marks without displaying every mark so as to avoid cluttering.
Steema Software - Customer Support Forums
http://216.92.101.67/support/
Code: Select all
private void surface1_GetSeriesMark(Steema.TeeChart.Styles.Series series, Steema.TeeChart.Styles.GetSeriesMarkEventArgs e)
{
// show only 4th point mark
if (e.ValueIndex!=3) e.MarkText = "";
}