对于柱形图中的零值点,如何在 x 轴下方出现轻微的阴影或颜色?现在什么都没有显示。
设置 minPointLength 属性会使一条线出现在 x 轴上方。
任何帮助或指示都会有所帮助。
以下是我的选择:
plotOptions: {
column: {
shadow: false,
pointWidth: 11.5,
borderWidth: 0.5,
enableMouseTracking: false,
minPointLength: 1
}
},
yAxis: {
labels: {
align: 'left',
style: {
color: 'gray',
fontWeight: 'normal',
fontSize: '8.5px',
fontFamily: 'Arial'
}
},
minorGridLineWidth: 1,
minorTickInterval: 10000,
minorGridLineColor: 'white',
minorTickWidth: 0,
title: {
text: '',
rotation: 270.0,
style: {
fontWeight: 'normal'
},
margin: 20,
style: {
fontWeight: 'normal',
fontFamily: 'Arial',
color: '#666666',
fontSize: '11px'
}
},
opposite: true,
min: 0,
max: 500000,
tickInterval: 100000,
gridLineWidth: 0.0
}
这给了我在 x 轴上方 1px 的点。但我正在寻找的是 xAxis 下方的一个小阴影/1px 点。