public Double Maximum {get;}
Remarks
The Maximum property returns the highest of all values inside the list.
As new points are being added to Series, the IValueList object calculates the Maximum, Minimum and TotalABS properties.
This applies to all Series lists of values, such as XValues, YValues, etc.
Example
[C#]
The following code will only show the maximum Mark :
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 = "";
See Also
ValueList Class | ValueList Members | Steema.TeeChart.Styles Namespace