2013-06-19 50 views
1

我發現this great tutorial上使用HighCharts,非常有用,但我找不到一個相關的API讓我只指定表中的一部分數據。例如,在上面的例子中(爲了更容易描述,我添加了2列),如果我只想使用HighCharts來顯示範圍內的數據(在紅色虛線範圍內),我應該怎麼做?如何在使用HighCharts時使用<table>指定一個數據範圍?

有沒有像datarange:{[0,0,4,4]}一些參數,甚至有時我只想照顧一些更復雜的範圍(第二圖像)

High Charts Table source with desired ranges to show

回答

2

根據文檔:

* table : String|HTMLElement 
* A HTML table or the id of such to be parsed as input data. Related options ara startRow, 
* endRow, startColumn and endColumn to delimit what part of the table is used. 

您可以使用STARTCOLUMN/ENDCOLUMN但數據範圍是unforutnaltey不支持。您可以在用戶請求您的建議聲音http://highcharts.uservoice.com/系統

http://jsfiddle.net/FYtnj/1/

1

的數據如何模塊工作,你可以找到在簡短說明完整版that file

正如你所看到的,你可以設置startColumn/startRowendColumn/endRow。類似數據範圍的東西不受支持。

columns/rows選擇,但它以不同的方式工作:http://jsfiddle.net/Y53FZ/

相關問題