TSeriesTextSource
Hierarchy Properties Methods Events
Unit
TeeSeriesTextEd
Description
The TSeriesTextSource Component allows access to the properties and methods associated with the manipulation of data from text sources. The the TeeChart 'Internet Applications' tutorial for more information about use.
Example :
procedure TForm1.BitBtn1Click(Sender: TObject);
begin
With SeriesTextSource1 do
Begin
Series:=Series1;
Filename:='http://www.steema.com/test.txt';
Headerlines:=1;
SeriesTextSource1.AddField('Bar',3);
{ Use the keyword 'Text' to select the Label field }
SeriesTextSource1.AddField('Text',1);
Active:=True;
end;
end;