Page 1 of 1
radar chart
Posted: Tue Aug 24, 2004 2:18 pm
by 8573792
is it possible to have for the radar charts the values for the axis start from zero (same as Excel does it)?
thx
Posted: Wed Aug 25, 2004 12:43 pm
by Marjan
Hi, Lucien.
Yes, sure. All you must do is set Axes.Left.Minimum to 0.0. Something along these lines:
Code: Select all
radar1.FillSampleValues(5);
Chart1.Axes.Left.Minimum := 0.0;
Posted: Fri Aug 27, 2004 7:31 am
by 8573792
TeeChart 6.01 here, forgot to tell.
It was not working without also:
Chart1.Axes.Left.Automatic := FALSE;
thanks
Lucian