SeriesTextSource, why use it?

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
hsauro
Newbie
Newbie
Posts: 7
Joined: Fri Feb 10, 2006 12:00 am

SeriesTextSource, why use it?

Post by hsauro » Thu Mar 16, 2006 4:07 am

A client wanted to import text data to graph along side some simulated data. We thought we'd use SeriesTextSource but after some experimentation we couldn't in the end see the point of using it. It turns out we have to manually create the series first before we can import the data. So I am wondering what value does the SeriesTextSource have, since we can easily use a TStringList to read CSV data.

Have we missunderstood the function of SeriesTextSource?

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Mar 16, 2006 11:34 am

Hi hsauro,

The Series TextSource component is used to fill a Series with points
coming from text. Text can be loaded from Strings, File or Web URL address.

To find what would better fit your needs I suggest you to have a look at the importing and exporting tutorial available with TeeChart documentation.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

hsauro
Newbie
Newbie
Posts: 7
Joined: Fri Feb 10, 2006 12:00 am

Post by hsauro » Thu Mar 16, 2006 10:05 pm

Thanks for the reply, in the end it was easier to use a CSV reader to load the data in ourselves. It would be nice if the text component had the option to create the series objects aswell, say by passing the class of the series to the call. But it's ok, we implemented the requirement.

Post Reply