我的类别按照排序顺序1-7进行分组和排序。 所以第1组有3个类别。 所以前3个类别属于第一组,接下来的4个属于第2组,依此类推。
是否可以根据类别应用绘图带?
由于
JS小提琴 https://jsfiddle.net/juliangurung/v73dcjs0/我不知道如何添加查看我的类别的情节带
xAxis: [{
plotBands: [{
color: 'orange', // Color value
from: 3, // Start of the plot band
to: 4 // End of the plot band
}],
}]
答案 0 :(得分:1)
当然,你可以简单地使用plotBands
。看看下面发布的例子。
API参考:
http://api.highcharts.com/highcharts/xAxis.plotBands
示例:
http://jsfiddle.net/d9pn98jL/
https://jsfiddle.net/kryeo92u/