我正在尝试添加一个新系列,然后在特定类别的图表中添加点(例如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>
这是filddle
答案 0 :(得分:3)
您可以使用基于x / y坐标的定义点的addSeries。
setTimeout(function () {
var lastPoint = chart.xAxis[0].categories.length-1;
chart.addSeries({
name: 'hello' + '',
data: [[lastPoint,50]]
});
}, 1);