Highcharts静态线与它下面的背景颜色

时间:2014-01-06 09:32:37

标签: javascript highcharts

我需要一个分散在值y上的“最小”样式行,并且它是静态的。到目前为止我所拥有的:

yAxis: {
    plotLines: [{
        color: 'red',
        width: 2,
        value: <?=$product[0]['current_price']?>
    }]
}

现在我想要做的是采用此行下方的背景,并为其着色。我如何实现这一目标?

1 个答案:

答案 0 :(得分:1)

不幸的是,不支持plotLine下的背景。您只能使用渲染器http://api.highcharts.com/highcharts#Renderer并添加额外的形状,或在plotLine下方使用plotBand。

http://api.highcharts.com/highcharts#xAxis.plotBands