Overlapping Column Chart
I am looking at a Goal vs. Actual column chart. I have two context cases for this framework: units goal and units sold, and revenue goal and revenue collected.
I have my bar chart working correctly, but I want to change the design of it a bit to be more visually appealing.
I am not satisfied with the Classic design view. It looks like this:
I have tried the Stacked and Stacked 100 views but they aren't doing what I need them to do.
I want the column charts to overlap.
If I have a product with a goal of 100 units, and we've sold 20 of them so far, the Stacked design view makes my entire bar equal 120 (combining the goal and the actual).
I don't want that. And I don't want a static goal or budget line across my graph.
I want the bar to stay at the goal of 100 and to see the 20 units sold in front of the 100 unit goal bar.
Kind of like this, visually:
Does anyone know how to do this? I think it should be a default design view option.
Thanks for the help!
Hi oliviar ,
Try these methods:
1. Columns chart with Fixed Placement: https://www.binextlevel.com/post/columns-chart-with-fixed-placement
2. Convert bar chart to progress bars: https://www.binextlevel.com/post/convert-bar-chart-to-progress-bars
-Hari
One option is to remove below lines of code from the script, so that it will display default Sisense tooltip with formatted numbers.
widget.on("beforedatapointtooltip", function (se, args){ args.cancel=true; });
ev.result.tooltip.shared = true ev.result.tooltip.enabled = true
-Hari