Forum Discussion
Multiple tooltip pages not working in map visualization
- 3 years ago
This is a tricky one since you have to setup the charts individually.
Basically you create two measures for the formatting something similar to:
E-Readings X Tooltip = IF(SELECTEDVALUE(SENSOR[SENSOR]) = "E", READINGS[E-READING X]) E Readings x Tolltip Text = IF( SELECTEDVALUE(SENSOR[SENSOR]) = "E", "Black", "#FFFFFF00")The first one is for the values and the other one is for condittional formatting the titles
Then you setup a measure for each chart/measure you want to show in this case I created 5 measures one for each chart.
You need to turn off the background, result below and in attach file.
Be aware that for make a better formatting of the charts you need to apply the filter of the sensor, after ending the formatting clear the filter of the sensor.
Check this blog post
Thank you very much for your reply MFelix.
I am afraid, my previous example was oversimplified, I apologize. I need separate tooltip pages for each line chart visualization as each chart is unique, and in addition, I'd rather not bundle all line chart viz in one single tooltip page. One sensor has readings in X, Y, and Z, should I unpivot the data to have a single column for all readings?
https://fromsmash.com/SENSORS-RGR
As you can see in the attached the pbix file, the map viz does not filter the tooltip pages per type of sensor, it always shows sensor E tooltip.
Thank you very much for your assistance.
This is a tricky one since you have to setup the charts individually.
Basically you create two measures for the formatting something similar to:
E-Readings X Tooltip = IF(SELECTEDVALUE(SENSOR[SENSOR]) = "E", READINGS[E-READING X])
E Readings x Tolltip Text = IF( SELECTEDVALUE(SENSOR[SENSOR]) = "E", "Black", "#FFFFFF00")
The first one is for the values and the other one is for condittional formatting the titles
Then you setup a measure for each chart/measure you want to show in this case I created 5 measures one for each chart.
You need to turn off the background, result below and in attach file.
Be aware that for make a better formatting of the charts you need to apply the filter of the sensor, after ending the formatting clear the filter of the sensor.
Check this blog post