using last TeeChart Pro FMX/VCL with Delphi Berlin 10.1 happen following:
I create a new Firemonkey project.
I create a TImagePointSeries.
Then I add a OnGetImage event to the TImagePointSeries
Code: Select all
... GetImage(Sender: TCustomImagePointSeries; ValueIndex: Integer; Picture: TPicture);
In FMX.Graphics there is no Picture class, for example,..
I "solved" that by adding this
Code: Select all
type TPicture = class(TBitmap) end;
Thanks for help
Peter