FMX Textout example?
Posted: Fri Oct 27, 2017 10:17 pm
I have tried and not found any examples of using a simple textout to the FMX tchart.
i have just tried a simple example of a tchart and a button
with no luck. A working example would be very much appreciated.
i have just tried a simple example of a tchart and a button
Code: Select all
procedure TForm2.Button1Click(Sender: TObject);
begin
Chart1.Canvas.AssignFont(Arial);
Chart1.Canvas.TextOut(20,20,'hello');
end;