Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello community, how can remove those values from the radar chart.
Hello @Galuyoo ,
Option isn't available on properties tab, so impossible. If you're at ease with oriented object language, take a look on dev-hub portal to see if you can modify the object.
Regards.
Hello @sbaro_bd, can i at least make the text the its covering more clear? Or make the number shorter? like 350M instead of 350 000 000
The chart inherits the format from your measure. So, you can modify the measure like this :
Num(Measure/1000000,'# ##0.0',',',' ')
It works if your measure is always expressed in miilions. You can create a variable and add it in a variable imput object to control the denominator value.
Regards.