Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
robertneallau
Regular Visitor

Change "zero point" or "center line" on x axis of horizontal bar chart - similar to tornado format

Working to build a horizontal bar chart with values below "x" say 50, going to the left and above going to the right.


Example Store A has 80 widgets and Store B has 30 widgets

 

The chart list Store A and B on the X axis, store A would have a bar going to the right "starting from 50", and store B would have a bar going to the left "starting from 50".

1 ACCEPTED SOLUTION

Hi @robertneallau

You could consider this workaround.

Use Tornado 1.3.0 visual, then create calculated column

category = IF([widgets]=50,"starting from 50",IF([widgets]>50,"over 50","less 50"))

 23.png

Then add "line" and "text" on the visual

24.png

 

 

Best Regards

Maggie

View solution in original post

6 REPLIES 6
Numa
Frequent Visitor

Hello all,

 

Do you know if there is an equivalent of the tornado chart for Vertical bar chart with custom y axis "zero point" ?

 

Thanks in advance,

Numa

v-juanli-msft
Community Support
Community Support

Hi @robertneallau

After searching, I can't find a visual which is able to meet your requirement exactly.

Here is a workaround.

Created calculated columns, then add columns in a stacked bar chart.

Widgets 2 = IF([widgets]=50,0,IF([widgets]>50,[widgets]-50,[widgets]-50) )

category = IF([widgets]=50,"starting from 50",IF([widgets]>50,"over 50","less 50"))

8.png

The line in the middle of the chart is a constant line.

9.png10.png

 

 

Best Regards

Maggie

 

Hi Maggie, this is very close.  The axis and data value still need to read the reported actual value.

 

Example, the first bar needs to display the number 80 and grow from 50 versus the reported calculated value of 30, same with the bars going to the left.  The second bar would report 30 and not -20 and start from 50, the reported values/labels need to be the actual value


How is this accomplished?

Hi @robertneallau

You could consider this workaround.

Use Tornado 1.3.0 visual, then create calculated column

category = IF([widgets]=50,"starting from 50",IF([widgets]>50,"over 50","less 50"))

 23.png

Then add "line" and "text" on the visual

24.png

 

 

Best Regards

Maggie

good solution, thanks 🙂

This is great, thanks Maggie!

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.