MPAndroidChart 2折线图

时间:2018-03-17 19:24:18

标签: android graph charts mpandroidchart

我试图使用2个MPAndroidChart LineCharts创建一个Android活动,但是这两个折线图中的条目可能不完全相似。我正在创建并填充2个数据集

LineDataSet one = null;
LineDataSet two = null;
ArrayList<Entry> oneList = new ArrayList<>();
ArrayList<Entry> twoList = new ArrayList<>();
//here I add entries to arraylists, the sizes may not be the same
List<ILineDataSet> dataSets = new ArrayList<>();
dataSets.add(one);
dataSets.add(two);
ArrayList<String> labelsIdeal = new ArrayList<>();
//here I add all the labels for both line charts

我想要的结果: The result I want to have

我得到的结果: The result I am getting

标签未与条目配对,我找不到解决方案,如何做到这一点。请帮助!!!

1 个答案:

答案 0 :(得分:0)

我发现了我做错了什么。当我们添加条目时,第二个参数是xIndex,它与图表上的标签相连,因此在形成所有标签的列表后,有必要更新条目的xIndexes,因此图表将是正确的