我发现this great tutorial使用HighCharts非常有用,但我找不到相关的API,只允许我在表格中指定一部分数据。
例如,在上面的例子中(我添加了2个cols以使其更容易描述),如果我只想使用HighCharts显示范围内的数据(在红色虚线范围内),我该怎么办? / p>
是否有一些参数如datarange:{[0,0,4,4]}
或者有时我只想处理一些更复杂的范围(在第二张图片中)
答案 0 :(得分: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。您可以在userVoice http://highcharts.uservoice.com/系统
中提出建议答案 1 :(得分:1)
您可以在完整版that file中找到数据模块工作原理的简短说明。
如您所见,您可以设置startColumn/startRow
和endColumn/endRow
。不支持数据范围之类的东西。
有columns/rows
选项,但它的工作方式不同:http://jsfiddle.net/Y53FZ/