标签: highcharts
我正在使用highcharts列范围,并且希望仅将网格线设置为0。可以吗?
yAxis: { gridLineColor: '#197F07', gridLineWidth: 0, title: { text: '%' } },
答案 0 :(得分:0)
您可以使用yAxis.plotLine API doc
yAxis.plotLine
yAxis: { gridLineWidth: 0, plotLines: [{ color: '#AAAAAA', width: 1, value: 0 }] },
Fiddle