是否有可能循環遍歷JFreechart中的一系列點? 謝謝循環遍歷JFreechart中的一系列點
0
A
回答
1
你可以遍歷任何給定圖中的列和行,但是作爲trashgod註釋:你應該在數據模型中做循環。
如果你堅持通過點循環可以通過兩種方式來實現:通過行/列數
- 環路和獲得的價值該行的給定索引/列
- 循環遍歷行/列的鍵並獲得給定密鑰對的行/列的值
這是在給定系列的數據集上完成的。您應該能夠使用下面的方法來實現這一目標:
int getColumnCount(); // Returns the number of columns in the table.
int getRowCount(); // Returns the number of rows in the table.
java.util.List getColumnKeys(); // Returns the column keys.
java.util.List getRowKeys(); // Returns the row keys.
java.lang.Number getValue(java.lang.Comparable rowKey, java.lang.Comparable columnKey); // Returns the value for a pair of keys.
欲瞭解更多信息請諮詢JFreeChart的文檔here,或者去購買開發者手冊深入類的解釋相關。
2
是,例如XYSeriesColleciton一個XYSeries即包括簡單的數字:
以下是代碼:
XYSeriesCollection dataSet0 = (XYSeriesCollection) plot.getDataset(0);
XYSeries series0 = dataSet0.getSeries(0);
for (Object i : series0.getItems()) {
XYDataItem item = (XYDataItem) i;
double x = item.getXValue();
double y = item.getYValue();
}
相關問題
- 1. 循環遍歷關係表
- 2. 循環遍歷SQL中的XML節點
- 3. 循環遍歷表列
- 4. Python循環遍歷列表
- 5. MySQL循環遍歷列
- 6. Django循環遍歷列表
- 7. Swift循環遍歷列表
- 8. xquery循環遍歷列
- 9. 在MATLAB中循環遍歷一系列.mat文件
- 10. 循環遍歷C中的列表#
- 11. 如何循環遍歷R中的列
- 12. 循環遍歷c#中的列表#
- 13. 循環遍歷Bash中的所有列
- 14. 循環遍歷R中的多列
- 15. 循環遍歷Python中的列表
- 16. 循環遍歷cf9中的列表
- 17. 循環遍歷R中的列表
- 18. 循環遍歷一個NSMutableArray
- 19. 循環遍歷一個NSMutableDictionary
- 20. 循環遍歷表中的某一列跳過第一列
- 21. 循環遍歷一個列表,只循環某個類的li?
- 22. 使用字符串循環遍歷一系列行
- 23. 循環遍歷isEmpty
- 24. 循環遍歷天
- 25. 循環遍歷LinkedList
- 26. 循環遍歷pd.dataframe
- 27. 在jQuery中循環遍歷
- 28. 在ruby中循環遍歷
- 29. 在jQuery中循環遍歷?
- 30. 如果循環內循環遍歷R中的列表?
是的,這應該是很容易在你的數據模型做。 – trashgod