0

在新的 HighCharts 3.0 下 - 它们包括一个数据模块插件(此处为示例)。实际脚本在这里

我有一张像

<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 列?

4

1 回答 1

0

数据模块是取还是整表,或者你可以指定: * - endColumn : Integer * 在表格输入数据中,第一行(索引为0)使用。默认为包含数据的最后一列。* * - endRow : Integer * 在表格输入数据中,要使用的最后一行(索引为 0)。默认为包含数据的最后一行。

没有选项可以仅指定一些列/行。

于 2013-03-12T09:50:07.207 回答