Forum Discussion
Graphs
- Anonymous2 years ago
I think i got the solution for my specific case:
The axis labels are not dynamic. If the requirement is to remove the labels all together, go to format visual -> X-axis/Y-axis -> Title(off).
in this section only, i found one obtion conditional fomat obtion below:
how can i use measure in the below section in powerbi, suppose i am creating any measure which will count the the rows, and if rows are blank it will show blank and titile will be shown in white colour and if row have data the then measure color will be black
CaptainCowell can you please look into it, i think you can help me in this
- ChiragGarg25122 years agoSolution Sage
Yes, that will work. That is great catch.
1) Need to create a measure that will count the number of rows in the data. [measure]
2) Another measure that will work on switch function.
For Ex., measure1 = switch([measure], 0, "White")
3) Apply this to conditional formatting in X-axis. {Field value -> Select [measure]}
That is great observation. Nice work Anonymous