Convert Bar Charts into Radial Bars
In some cases, radial bar charts can look nicer and be easier to understand than regular bar charts. Since Sisense doesn’t have a built-in widget for radial bar charts, here is a script that converts standard bar charts into radial ones. This guide will demonstrate how to use the script to make data visuals more interesting and clear.Â
Â
Steps:
Create a bar chart. It can be Classic, Stacked or stacked 100.
Add below widget script and save.
Refresh the widget
Â
widget.on('processresult', function(se, args){
args.result.chart.polar = true
args.result.pane = {
size: '80%',
innerSize: '20%',
endAngle: 270
}
});Reference:Â https://www.binextlevel.com/post/convert-bar-charts-into-radial-barsÂ
Â
-Hari
harikm007
Posted 1 year ago·Last reply 1 year ago
1 comment
Michalis Gregoriou
·1 year ago