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
I can not set WebChart minimum axis to 0 for a Radar Chart
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);
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);
Pep Jorge
http://support.steema.com
http://support.steema.com
Thanks - for the response
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
Thanks
Mike
Hi Mike,
Yes, by default. Test it and if still having problems let me know.I'll try that. Is the Axis on the Radar Chart the left axis?
Pep Jorge
http://support.steema.com
http://support.steema.com
Thanks - for the response
Worked perfectly thanks