Class Not Found on LoadChartFromFile

TeeChart FireMonkey (Windows,OSX,iOS & Android) for Embarcadero RAD Studio, Delphi and C++ Builder (XE5+)
Post Reply
Roland
Newbie
Newbie
Posts: 7
Joined: Tue May 26, 2015 12:00 am

Class Not Found on LoadChartFromFile

Post by Roland » Fri Jul 24, 2015 7:35 am

Hi.
I save a chart that contans series added at runtime via SaveChartToFile.
When I load the chart via LoadChartFromFile on the next programstrat I receive a "TFastLineSeries class not found error".
I thought the problem might be caused by not linking with runtime packages, but still could not handle to get it running by using runtime packages. If missing runtime packages might cause the issue, which package would I need to link into my appluication? What else could cause this problem?

Best regards

Roland

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Class Not Found on LoadChartFromFile

Post by Yeray » Fri Jul 24, 2015 9:54 am

Hello,

Try registering the series with:

Code: Select all

uses Series;
//...
  RegisterTeeStandardSeries;
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Roland
Newbie
Newbie
Posts: 7
Joined: Tue May 26, 2015 12:00 am

Re: Class Not Found on LoadChartFromFile

Post by Roland » Fri Jul 24, 2015 3:56 pm

Hi Yeray,
thanks a lot. That solves the problem.

Best regards

Roland

Post Reply