highcharts - 根据y值改变区域的颜色

时间:2014-07-07 20:00:08

标签: javascript highcharts

如何根据同一系列的y值更改区域类型图的颜色?


图表类型 - 区域


y-值可能 - 1,2和3


所需输出 - 绿色区域,用于3和3之间的值。 2,红色区域的值在2& 2之间。 1

1 个答案:

答案 0 :(得分:6)

有两个选项,你的解释缺乏信息,所以我向你展示了它们:http://jsfiddle.net/4vzEt/13/

  1. 带负色的阈值:

    $("#container1").highcharts({
      series: [{
        threshold: 2,
        negativeColor: 'red',
        color: 'green',
        type: 'area',
        data: [1, 2, 2, 1, 3, 3, 2, 3, 2, 1, 1, 3, 1, 1]
      }]
    });
    

    注意:阈值设置在该值中开始系列的y值。

  2. 渐变色:

    $("#container2").highcharts({
        series: [{
            threshold: 1,
            color: {
                linearGradient: {
                    x1: 0,
                    x2: 0,
                    y1: 0,
                    y2: 1
                },
                stops: [
                    [0, 'green'],
                    [0.49, 'green'],
                    [0.5, 'red'],
                    [1, 'red']
                ]
            },
            type: 'area',
            data: [1, 2, 2, 1, 3, 3, 2, 3, 2, 1, 1, 3, 1, 1]
        }]
    });
    

    注意:标记继承系列颜色。禁用它们,或直接为每种点颜色设置。