Question

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.

Était-ce utile?

La solution

try like this.

        AxisY axisY = new AxisY();
        axisY.AxisName = "AxisY1";
        axisY.Title = "";
        axisY.IsZeroBased = true;
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top