문제

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.

도움이 되었습니까?

해결책

try like this.

        AxisY axisY = new AxisY();
        axisY.AxisName = "AxisY1";
        axisY.Title = "";
        axisY.IsZeroBased = true;
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top