You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, there are no isDrawSteppedEnabled and setDrawStepped methods in LineDataSet when this project is referenced in build.gradle dependencies
(compile 'com.github.PhilJay:MPAndroidChart:v2.2.3')
新的compile 'com.github.PhilJay:MPAndroidChart:v2.2.3'依赖包
和我下载下来的代码不匹配
List sets = mChart.getData()
.getDataSets();
for (ILineDataSet iSet : sets) {
LineDataSet set = (LineDataSet) iSet;
if (set.isDrawSteppedEnabled()) {
set.setDrawStepped(false);
} else {
set.setDrawStepped(true);
}
}
没有这些方法
The text was updated successfully, but these errors were encountered: