2011-11-18 51 views
1

我一直在使用Graphview庫,它的工作非常適合我的簡單圖形。但是關於這個圖書館並沒有太多的信息,我想知道如何刪除一個系列。GraphView庫刪除系列

我正在刷新來自微調器的數據,但他們只是在圖中添加了一條新線,所以我必須先清除它。

我確實搜索了很多,並嘗試了很多,但什麼都沒找到。

最好我想要一個清晰的所有系列函數,所以我不必把系列變量。

我能找到的關於圖書館的唯一信息是這裏http://www.jjoe64.com/2011/07/chart-and-graph-library-for-android.html

我知道這個代碼會使功能,但有可能將其添加到打包庫,以及如何?在幾天前加

public boolean removeSeries(GraphViewSeries series) { 
boolean result; 
result = false; 
if (graphSeries.contains(series)) { 
graphSeries.remove(series); 
result = true; 
} 
return result; 
} 
+0

這是怎麼工作i'did不了這一點。 –

回答