我可以添加"平均值"线到Highcharts Chart?

时间:2014-08-18 22:01:16

标签: javascript highcharts

我正在尝试使用Highcharts重新创建图表(下面的图表)。我正在使用一个基本的条形图,我想知道是否有办法让垂直线显示所有条形图的平均值?我有计算的值,我只需要它显示如图所示。我可以使用Highcharts吗?

enter image description here

2 个答案:

答案 0 :(得分:12)

是。您可以将其添加为情节线,如下所示:

yAxis: {
    // ...Options
    plotLines: [{
        color: 'red',
        value: '15', // Insert your average here
        width: '1',
        zIndex: 2 // To not get stuck below the regular plot lines
    }]
}

请参阅this JSFiddle demonstration

答案 1 :(得分:1)

HighCharts的Demo区域有很多例子。其中之一,有你需要的代码 http://www.highcharts.com/demo/combo-multi-axes