Returns the Last point value.
public Double Last {get;}

Remarks


This property returns the Last point value. This is the same value as the Count - 1 index value:

Example


[C#]

This is the same value as the Count - 1 index value:

tChart1.Series[0].XValues.FillSequence(); 
tChart1.Series[0].YValues.Value[tChart1.Series[0].Count -1] = 12.34;
MessageBox.Show(tChart1.Series[0].YValues.Last.ToString());

See Also

ValueList Class | ValueList Members | Steema.TeeChart.Styles Namespace