It looks like the Title property of TExtraLegendTool is not working in TeeChart 7.12.
In the demonstration program Tee7New I cannot make the title visible too.
What do I need to do to make the title of the extra legend visible?
Regards,
Bert
TExtraLegendTool Title property
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Bert,
Yes, you are right. This has been fixed in TeeChart Pro v8 VCL.
Yes, you are right. This has been fixed in TeeChart Pro v8 VCL.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Hi Bert,
sorry for delay !
in order to fix it you have to go to the line 4305 at Chart.pas and change the following lines :
by these :
This should fix it for v7.
sorry for delay !
in order to fix it you have to go to the line 4305 at Chart.pas and change the following lines :
Code: Select all
with Legend do
begin
IDrawTitle:=Title.Visible and (Title.Text.Text<>'');
if IDrawTitle then Title.CalcHeight;
end;
Code: Select all
IDrawTitle:=Self.Title.Visible and (Self.Title.Text.Text<>'');
if IDrawTitle then
begin
Self.Title.CalcHeight;
ParentChart.Canvas.AssignFont(Self.Font); // Reset font again
end;
Pep Jorge
http://support.steema.com
http://support.steema.com