We can control the transparency of bar or column chart using below script
Steps:
Create bar/column chart
Add below script to chart
Save the script and refresh widget
widget.on('processresult', function(se, ev){
$.each(ev.result.series, function(index, value){
value.borderWidth = 1
value.borderColor = value.color
value.borderRadius = 2
value.color = Highcharts.color(value.color).setOpacity(0.4).get('rgba')
})
})
Comments