ISeries.FillSampleValues
ISeries

procedure FillSampleValues(NumValues: Integer);

Type Library
TeeChartx

Description
Each Series draws random values at design mode unless you connect the Series class to other Series class or to a DataSet (Table,SQL,TClientDataset) class.

This method adds some random values to the Series and redraws it.

Example

Delphi

TChart1.Series[ 1 ].FillSampleValues(20);

{will draw a series with 20 values at runtime}

Visual Basic

TChart1.Series(1).FillSampleValues 20