I am using highchart to get bar chart, i have used plotbands here so my requirement is i need to get the plotband only for the one row xaxis. here it is the snippet for example. https://jsfiddle.net/z6kug43w/20/
xAxis: {
plotBands: [{
from: 0.4,
to: 0.6,
color: '#fff',
zIndex: 3
},
{
from: 1.4,
to: 1.6,
color: '#fff',
zIndex: 3
},
{
from: 2.4,
to: 2.6,
color: '#fff',
zIndex: 3
},
{
from: 3.4,
to: 3.6,
color: '#fff',
zIndex: 3
}],
categories: ["abc (1%)", "abcd (1%)", "abce (1%)", "abcf (1%)", "abcg (1%)", "abch (1%)"],
crosshair: true
},
yAxis: { min: 0, plotBands: [{ from: 0, to: 100, thickness: '2%', color: '#D5D5D6' }], title: { text: 'Rainfall (mm)' } },