【发布时间】:2018-09-11 09:06:12
【问题描述】:
我想在我的 Android 应用中使用 MPandroidchart 比较成绩。
我在我的网站上制作了同样的图表。但不知道在Android中是否也可以。
这就是我想做的:
final ArrayList<String> labelsSub = new ArrayList<>();
labelsSub.add("CSE215");
labelsSub.add("CSE215");
labelsSub.add("MAT120");
labelsSub.add("MAT120");
List<BarEntry> entriesSub = new ArrayList<>();
entriesSub.add(new BarEntry(0f, "A"));
entriesSub.add(new BarEntry(1f, "A-"));
entriesSub.add(new BarEntry(2f, "A"));
entriesSub.add(new BarEntry(3f, "B"));
【问题讨论】:
-
检查我在 xAxis How to set String value i987654322@中设置字符串值的相同答案
标签: android charts mpandroidchart