TCanvas3D.TextOut3D

TCanvas3D.TextOut3D
TCanvas3D

procedure TextOut3D(X, Y, Z: Integer; Const Text: String); overload;

Unit
TeCanvas

Description
Draws a 2D non-rotated label at XYZ position. Depends on TextAlign property with the possibility of allowing HTML or not.

Example
:

procedure TForm1.Chart1AfterDraw(Sender: TObject);
begin
Chart1.Canvas.Textout(10,10,'Hello world',true);
end;