MPAndroidChart
MPAndroidChart copied to clipboard
The Linechart lines are jagged
LineDataSet.Mode.LINEAR
How can i remove the jaggedness between the lines
I guess these codes can resolve your problem.
lineDataSet.setMode(LineDataSet.Mode.CUBIC_BEZIER);
lineDataSet.setCubicIntensity(0.1f);
`
I guess these codes can resolve your problem.
lineDataSet.setMode(LineDataSet.Mode.CUBIC_BEZIER);lineDataSet.setCubicIntensity(0.1f); `
PM requires that smooth curves cannot be used,but thanks