top of page

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:

  1. Create a bar chart. It can be Classic, Stacked or stacked 100.

  2. Add below widget script and save.

  3. Refresh the widget


widget.on('processresult', function(se, args){	
    args.result.chart.polar = true

	args.result.pane = {
        size: '80%',
        innerSize: '20%',
        endAngle: 270
    }

});

67 views0 comments

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating
BI Next Level white logo

BI Next Level is your trusted resource for BI customization, data solutions, and expert insights. Explore practical tips, scripts, and tutorials for tools like Sisense, Python, and SQL. Let’s transform your data into impactful insights together.

Quick Links
Connect with us
Copyright © 2024. All Rights Reserved. Designed, Developed & Maintained  by Intertoons
bottom of page