Page 1 of 1

Class Not Found on LoadChartFromFile

Posted: Fri Jul 24, 2015 7:35 am
by 16573808
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

Re: Class Not Found on LoadChartFromFile

Posted: Fri Jul 24, 2015 9:54 am
by yeray
Hello,

Try registering the series with:

Code: Select all

uses Series;
//...
  RegisterTeeStandardSeries;

Re: Class Not Found on LoadChartFromFile

Posted: Fri Jul 24, 2015 3:56 pm
by 16573808
Hi Yeray,
thanks a lot. That solves the problem.

Best regards

Roland