在新的HighCharts 3.0下 - 它们包含一个数据模块插件(例如here)。实际的脚本是here
我有一张像
这样的表格<table id="data-table">
<thead>
<tr>
<th>Date</th>
<th>Name</th>
<th>Address</th>
<th>Business</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>1/01/2013</td>
<td>John Apple</td>
<td>51 Blah Street, CA</td>
<td>Yes</td>
<td>$54.33</td>
</tr>
</tbody>
</table>
我想知道如何以新格式映射日期和价格?因此,价格为Y,日期为X,系列为Y,X
目前,该示例仅显示如何映射整个表 - 但我只想映射2列?
答案 0 :(得分:0)
数据模块正在采取或整个表,或者您可以指定: * - endColumn:整数 *在表格输入数据中,要使用的第一行(索引为0)。默认为包含数据的最后一列。 * * - endRow:整数 *在表格输入数据中,使用最后一行(索引为0)。默认为包含数据的最后一行。
没有选项只能指定一些列/行。