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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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