我试图使用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
标签未与条目配对,我找不到解决方案,如何做到这一点。请帮助!!!
答案 0 :(得分:0)
我发现了我做错了什么。当我们添加条目时,第二个参数是xIndex,它与图表上的标签相连,因此在形成所有标签的列表后,有必要更新条目的xIndexes,因此图表将是正确的