Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
395
Regulate Y-Axis with fixed Interval
posted

Hello Greetings of the day,


I am using IGChartView and i want to regulate y-axis at its fixed interval.


let say i have array of values between 1 to 100.


And my data points are 10,38,59,20,44,88,77,59,38,39


Now i want to regulate y-axis with interval of 10. So is it possible in IGChartView?


Thanks..

Parents
  • 21382
    Suggested Answer
    posted

    In order to do this you would want to set the .minimum, .maximum, and .interval properites on the yAxis.

        _defaultSeries.yAxis.minimum = 0;

        _defaultSeries.yAxis.maximum = 100;

        _defaultSeries.yAxis.interval = 10;

Reply Children
No Data