Linear/Vertical Gauge Axis Values Reset At Rintime

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
madup
Newbie
Newbie
Posts: 28
Joined: Fri Oct 07, 2005 4:00 am

Linear/Vertical Gauge Axis Values Reset At Rintime

Post by madup » Wed Sep 03, 2008 8:41 am

I'm having a problem setting a value at design time, that gets reset at runtime. From the editor, on Series Format, Axis, Title, Style, if O set the title, at design time, at runtime it resets to "Axis Title %"
Is there a way to set this value before runtime ?
And not for a lack of looking, however I can't find this parameter to set at runtime.
Regards
Mike

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Sep 03, 2008 9:00 am

Hi Mike,

This is a known issue (TV52012914) listed on the defect list to be fixed for next releases. In the meantime, the only solution is setting this at runtime.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

madup
Newbie
Newbie
Posts: 28
Joined: Fri Oct 07, 2005 4:00 am

Post by madup » Wed Sep 03, 2008 9:40 am

Thanks for the quick reply.
Would you give me some quidance on setting this value at runtime?
Regards
Mike

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Sep 03, 2008 9:43 am

Hi Mike,

Of course, here it's:

Code: Select all

  Series1.GetHorizAxis.Title.Caption:='Hello World!';
or:

Code: Select all

  Chart1.Axes.Bottom.Title.Caption:='Hello World!';
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

madup
Newbie
Newbie
Posts: 28
Joined: Fri Oct 07, 2005 4:00 am

Post by madup » Wed Sep 03, 2008 9:50 am

Hi
Thanks again
Regards
Mike

Post Reply