Is there a way to reduce gap between BARS in a bar chart made using Echarts. I tried the option barCategoryGap
as mentioned in the docs but it had no effect.
option = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [{
data: [120, 200, 150, 80, 70, 110, 130],
type: 'bar',
barWidth: 50,
barCategoryGap: '10%'
}]
};
Any idea what is wrong here?