Why doesn't setting the opacity in the series property work for 'bars' as it does for 'area' in a combo chart?
series: {
0: { targetAxisIndex: 0, type: 'line' }, // Price
1: { targetAxisIndex: 1, type: 'area', areaOpacity: 0.1, lineWidth: 0 }, // Volume
},
while this does not work:
series: {
0: { targetAxisIndex: 0, type: 'line' }, // Price
1: { targetAxisIndex: 1, type: 'bars', opacity: 0.1 }, // Volume
},
Is this a bug, or?