Forum Discussion
Anonymous
10 years agoNot applicable
Radial Gauge Chart - Set Maximum Value
Hope all is well. Just want to thank you for designing such a great product thus far. I was wondering if it is possible to set the maximum value of the radial gauge to 1. Also, is it possible to r...
Shahid12523
Community Champion
1 year agoYes, in a Radial Gauge in Power BI:
Set Maximum Value:
Select the gauge β Format pane β Gauge axis β Maximum β enter 1 (or whatever max you want).
Show as Percentage:
If your measure is 0.75 and you want 75%, either:
Format the measure as Percentage in the Modeling tab.
Or multiply by 100 in DAX and use Decimal number with 0 decimals:
MeasurePct = [YourMeasure] * 100
π Maximum value controls the gauge scale; formatting your measure as Percentage displays it as % instead of a decimal.