Page 1 of 1

I can not set WebChart minimum axis to 0 for a Radar Chart

Posted: Wed Nov 17, 2004 4:53 am
by 8121222
WebChart defaults to minimum series value as the minimum X axix value in Radar Chart. I believe it is the Bottom Axis that is the default display but I have tried all non custom axes. With 3 series and min value in all at 1, I can't get the start value to be zero.

I tried the following:
(1) Set the properties using the editor and properties for control on aspx page. They continue to default to automatic
(2) Programatically set the axes.minimum, maximum and automatic

Same result, minimum value on axis is always 1. What am I missing here?

Thanks

Mike McCann

Posted: Wed Nov 17, 2004 12:07 pm
by Pep
Hi Mek,

I'm sorry, if I understand what you're trying to do, you should be able to set the Min and Max, but for the Left axes :
WebChart1.Chart.Axes.Left.SetMinMax(0,10);

Thanks - for the response

Posted: Wed Nov 17, 2004 10:48 pm
by 8121222
I'll try that. Is the Axis on the Radar Chart the left axis? I tried most of my tests on the Bottom Axis so that could explain it.

Thanks
Mike

Posted: Thu Nov 18, 2004 7:56 am
by Pep
Hi Mike,
I'll try that. Is the Axis on the Radar Chart the left axis?
Yes, by default. Test it and if still having problems let me know.

Thanks - for the response

Posted: Thu Nov 18, 2004 11:54 pm
by 8121222
Worked perfectly thanks