我有一个带有高图的简单折线图,问题是我无法将阈值设置为零,根据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
}