在Plotband高图上添加渐变颜色

时间:2017-06-22 02:39:43

标签: highcharts

我在高图上创建折线图。有没有办法让plotBands有渐变颜色?

        plotBands: [{
        from: 7,
        to: 0,
        color: 'rgba(255, 51, 51, 0.28)'
    }]

您可以在此检查我的代码以供参考 的 http://jsfiddle.net/MyTestSampleAccount/0nqn5vzs/

1 个答案:

答案 0 :(得分:2)

您可以使用以下内容:

yAxis: {
    ...,
    plotBands: [{
        color: {
            linearGradient: { x1: 1, y1: 1, x2: 1, y2: 0 },
            stops: [
                [0, 'rgb(255, 255, 255)'],
                [1, 'rgb(200, 200, 255)']
            ]
        },
        from: 0,
        to: 7
    }],
},

DEMO