TTMSFNCChart doesn't save to image

Using Delphi 10.3, the TTMSFNCChart component will not save the chart to an image using the SaveToImage procedure.

I created a blank multi-device application, dropped a TMSFNCChart component and a button, in the button code I added:

TMSFNCChart1.SaveToImage('C:\test.jpg');

and the saved image is blank.

what am I doing wrong?

For anyone else running into this issue, I just found this and it seems to work...
TMSFNCChart1.MakeScreenshot.SaveToFile('C:\test.jpg');

1 Like

We'll investigate if there are issues with the SaveToImage call.