Page 1 of 1

Linear/Vertical Gauge Axis Values Reset At Rintime

Posted: Wed Sep 03, 2008 8:41 am
by 9343745
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

Posted: Wed Sep 03, 2008 9:00 am
by narcis
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.

Posted: Wed Sep 03, 2008 9:40 am
by 9343745
Thanks for the quick reply.
Would you give me some quidance on setting this value at runtime?
Regards
Mike

Posted: Wed Sep 03, 2008 9:43 am
by narcis
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!';

Posted: Wed Sep 03, 2008 9:50 am
by 9343745
Hi
Thanks again
Regards
Mike