如何在highcharts ng中创建阈值

时间:2016-12-21 15:41:49

标签: javascript angularjs highcharts highcharts-ng

我有一个带有高图的简单折线图,问题是我无法将阈值设置为零,根据highcharts api应该是 plotoption.series.threshold 的阈值属性对于这个nswer it should be under plotoptions,但正如你在我的jsfiddle中看到的那样not to work for me.我想要做的就是将x轴移动到0点,其中所有负值都显示在x-之后轴

代码:

 $scope.highchartsNG = {
    options: {
      chart: {
        type: 'line'
      },
      plotOptions: {
      line: {

      },
        series: {
          threshold: 3
        }
      }
    },
    series: [{
      data: [10, 15, 12, 8, -7]
    }],
    title: {
      text: 'Hello'
    },
    loading: false
  }

1 个答案:

答案 0 :(得分:0)

你不能用情节选项看到这里

plotOptions: {
            series: {
                threshold:0,
                 negativeColor: 'green'
            }
        },

<强> Example

您可以尝试将plotLines用于x轴,

yAxis: {
            title: {
                text: 'dBmV'
            },
            plotLines: [{
                value: 0,
                width: 2,
                color: 'green'
            }]
        },

<强> DEMO