0

我正在尝试添加一个新系列,然后在特定类别的图表中添加点(比如 12 月和 8 月),但我无法在图表上看到点

HTML 代码

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

这是小提琴

4

1 回答 1

3

您可以将 addSeries 与基于 x/y 坐标的定义点一起使用。

  setTimeout(function () {
        var lastPoint = chart.xAxis[0].categories.length-1;
        chart.addSeries({
            name: 'hello' + '',
            data: [[lastPoint,50]]
        });
    }, 1);

http://jsfiddle.net/EKPZz/7/

于 2013-08-22T10:33:38.400 回答