Pregunta

We are using RadChart in silverlight application.The chart is having multi y-axis(Two) one is showing the ranging from zero to 100 but another y axis is not showing the ranging from 0 to 100.It is showing the range from the point binding -1 to +1 of that value(i.e the value is 80 means the scale will be 79,80,81).

can any provide me any solution is appreciated.

¿Fue útil?

Solución

try like this.

        AxisY axisY = new AxisY();
        axisY.AxisName = "AxisY1";
        axisY.Title = "";
        axisY.IsZeroBased = true;
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top