For example using the following code will show only the max Mark :
Code: Select all
private void Form1_Load(object sender, System.EventArgs e)
{
fastLine1.FillSampleValues(10);
fastLine1.Marks.Visible = true;
}
private void fastLine1_GetSeriesMark(Steema.TeeChart.Styles.Series series, Steema.TeeChart.Styles.GetSeriesMarkEventArgs e)
{
if (series.YValues.Value[e.ValueIndex] != series.YValues.Maximum )
{
e.MarkText = "";
}
}
http://support.steema.com