IValueList.First
IValueList

property First: Double;

Type Library
TeeChartx

Description
This property returns the First point value.

First Example

This is the same value as the 0 index value:

Delphi

TChart1.Series[ 0 ].XValues[ 0 ].Value := 1234.56 ;

ShowMessage( FloatToStr(TChart1.Series[ 0 ].XValues.First ) );

Visual Basic

TChart1.Series(0).YValues.Value(0) = 103.96

MsgBox TChart1.Series(0).YValues.First