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
Class Not Found on LoadChartFromFile
Re: Class Not Found on LoadChartFromFile
Hello,
Try registering the series with:
Try registering the series with:
Code: Select all
uses Series;
//...
RegisterTeeStandardSeries;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Class Not Found on LoadChartFromFile
Hi Yeray,
thanks a lot. That solves the problem.
Best regards
Roland
thanks a lot. That solves the problem.
Best regards
Roland