Hello,
Just a quick query in regard to the TAnnoationTool to see if it has the ability to be rotated like Marks can have a rotation angle (e.g. TPie) ?
TAnnotationTool label rotation
Re: TAnnotationTool label rotation
Hello,
This is a feature request already present in the wish list to be implemented in future releases (TV52010464).
In the meanwhile I can only think on drawing manually your texts at OnAfterDraw event:
This is a feature request already present in the wish list to be implemented in future releases (TV52010464).
In the meanwhile I can only think on drawing manually your texts at OnAfterDraw event:
Code: Select all
procedure TForm1.Chart1AfterDraw(Sender: TObject);
begin
Chart1.Canvas.RotateLabel(300, 300, 'my rotated label', 45);
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |