具有延迟加载列表视图的MPAndroidChart库

时间:2017-12-25 09:12:19

标签: android android-recyclerview mpandroidchart

我正在做一个回收列表视图,它将显示延迟加载的图形。当我第一次打开列表时,我显示10个项目,然后当我到达列表的末尾时,我再加载5个项目。

但是,对于之后加载的这5个项目,绘制的图形会绘制得更厚。我认为它再次借鉴了它。我不知道问题是什么。有没有人对此有所了解?

My chart should look like the first position. Then the item that I am lazily loaded is like the second position.

1 个答案:

答案 0 :(得分:0)

当您加载另外五个条目时,您需要调用以下方法来重新加载图表视图:

yourDataSet.notifyDataSetChanged();  // update dataset for new values
chartView.notifyDataSetChanged();   // let the chart know it's data changed
chartView.invalidate();  // refresh the chart

如需进一步查询和解释,请访问:

https://github.com/PhilJay/MPAndroidChart/wiki/Dynamic-&-Realtime-Data