Javascript 在比较多系列highstock中更改yAxis值,以显示点值而不是百分比更改值

Javascript 在比较多系列highstock中更改yAxis值,以显示点值而不是百分比更改值,javascript,highcharts,Javascript,Highcharts,嗨,我正在使用Highstock图表 我认为当前yAxis标签中的这个.value是百分比变化point.change,我们可以显示表示point.y的值吗 这可能吗 注意y轴值不应硬编码更改系列,如下所示: plotOptions: { series: { //compare: 'percent', compare: 'value', showInNavigator: true } }, 谢谢你指导我。可能重复的 labels: { f

嗨,我正在使用Highstock图表

我认为当前yAxis标签中的
这个.value
是百分比变化
point.change
,我们可以显示表示
point.y
的值吗

这可能吗


注意y轴值不应硬编码

更改
系列
,如下所示:

plotOptions: {
  series: {
    //compare: 'percent',
    compare: 'value',
    showInNavigator: true
  }
},

谢谢你指导我。可能重复的
labels: {
            formatter: function () {
                return (this.value > 0 ? ' + ' : '') + this.value + '%';
            }
        },
plotOptions: {
  series: {
    //compare: 'percent',
    compare: 'value',
    showInNavigator: true
  }
},