MPAndroidChart
MPAndroidChart copied to clipboard
Can i use limit lines as a grid lines ?
Hi, i like to customized grid lines of xAsis. But did not find any thing
I tried with limit lines. I am able to achieve that with some code
for(float i =axisMin ;i<axisMax * 4;i++){
LimitLine limitLine = new LimitLine(value);
xAxis.addLimitLine(limitLine);
}
But getting a warring every time
E/MPAndroiChart: Warning! You have more than 6 LimitLines on your axis, do you really want that?
Does it really effect the code.