seriesDefault.gap doesn't appear to be working. I have to specify the gap on the series in order to have any effect. In my relatively simple example,
works, but
does not.
seriesDefaults: {
type: "bar",
stack: true,
labels: {
visible: true,
position: "insideBase",
format: "c0"
}
},
series: [{
field: "Amount",
gap: 0.3
}],
works, but
seriesDefaults: {
type: "bar",
stack: true,
labels: {
visible: true,
position: "insideBase",
format: "c0"
},
gap: 0.3
},
series: [{
field: "Amount"
}],
does not.