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:
chrisgehm
9 years agoHelper III
Thanks for the answer Sean
Actually, I've got over 1000 objects, so I can't do a measure for each object.
I've tryed to drag "Object" to the legend field, but I can't.
Any idea why?
- Sean9 years agoCommunity Champion
Well I know you can't place a Measure in the Legend! What is Object?