如何在 highcharts 的行堆叠列上显示值

How to display values on line stacked columns on highcharts

我想在堆叠列中显示增长的值,但还没有成功,有人可以帮助我吗? ;(

我把它设置在数据标签上好像它仍然不起作用

 plotOptions: {
    column: {
        stacking: 'normal',
        dataLabels: {
                  enabled: true,
                  formatter: function() {    
                        return this.point.y;
                   },
                  style:{
                        fontSize: 8
                    }
              }
    },
    line: {
        dataLabels: {
            enabled: true,
            allowOverlap: true
        }
    }
}

http://jsfiddle.net/ndhanajh06/r16e2Lyw/2/

您使用了spline系列类型,因此您需要为spline启用数据标签,而不是line:

plotOptions: {
  column: {
    ...
  },
  spline: {
    dataLabels: {
      enabled: true,
      allowOverlap: true
    }
  }
}

现场演示: http://jsfiddle.net/BlackLabel/fputh18a/

API参考:https://api.highcharts.com/highcharts/plotOptions.spline.dataLabels