Forum Discussion
chrisgehm
9 years agoHelper III
Show components while passing mouse over graph
Hi everyone! I'm trying to show in a graph some values and its names or description, per month. For example: So what I want is that when I move the mouse over the graph, to show eac...
Sean
9 years agoCommunity Champion
The easiest way would be to place Object in the Legend like this
Otherwise you have to write Measures for each Object and place in the tooltips like this...
The Measures are very simple however depending on how many you actually have it may take some time
Object A = CALCULATE ( SUM('Table'[Amount]), 'Table'[Object]="A")
Object B = CALCULATE ( SUM('Table'[Amount]), 'Table'[Object]="B")
Object C = CALCULATE ( SUM('Table'[Amount]), 'Table'[Object]="C")
Object D = CALCULATE ( SUM('Table'[Amount]), 'Table'[Object]="D")Hope this helps!:smileyhappy: