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
jkilber
New Member

Static Y-Axis Scale on Radar Chart

I have a radar chart built with a slicer attached. When I slice the data differently, it changes the scale of the radar chart, which makes the charts hard to compare. How do I keep the radar chart y-axis scale the same? 

 

The data values are from 1 - 5. I'm wanting the outer ring to stay at a value of 5 and likewise, the center, 1, no matter which sliced attribute I select. 

 

How do I set a Y-Axis values/scale to remain static no matter the selection I make in the slicer? 

 

Thanks for any help!

1 REPLY 1
Eric_Zhang
Employee
Employee

@jkilber

Let's say, if you have a table as below

Capture.PNG

 

Then you'll need a calculated table as

auxiliary Table = DISTINCT(yourTable[your orginal category])

Capture.PNG

 

Then create a measure as

Measure =
VAR val =
    SUMX (
        FILTER (
            yourTable,
            yourTable[your orginal category] = MAX ( 'auxiliary Table'[category] )
        ),
        yourTable[value]
    )
RETURN
    IF ( ISBLANK ( val ), 1, val )

See more in the attached pbix file.

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.