我有一个类似于这个小提琴的图表:http://jsfiddle.net/h9Bqj/
如图所示,xAxis上没有“3”和“5”的刻度,也没有标签。我无法弄清楚如何为每个xAxis显示一个勾号。
[...]
xAxis: {
labels: {
step: 1
},
tickInterval: 1
}
选项对我不起作用。
我如何获得每个增量的刻度和标签?
答案 0 :(得分:1)
将tickInterval设置为1,然后将pointInterval
添加为1.
http://api.highcharts.com/highcharts#plotOptions.series.pointInterval
答案 1 :(得分:0)
其实我自己想出来了。
在选项或系列中通过plotOptions: {
column: {
stacking: 'normal',
pointRange: 1
}
},
设置pointRange可以解决问题。