March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have a trend line that has 2 values (Current Year and Prior Year). I currently have a Tool Tip on Current Year that pops up when you hover over the current year trend line. However, prior year still has the default Power BI hover over popping up if you hover over it. Is there a way I can disable it so nothing happens if you hover over the Prior Year Trend line?
Thanks
Solved! Go to Solution.
Hi ISUGraber,
There is no setting to disbale tooltip conditionally, so one workaround is that create a tooltip page and use this in chart.
Below is my sample, if your sample is not similar to below, please correct me and inform me your sample data.
namestatusamount
a | t | 10 |
a | f | 12 |
b | t | 13 |
b | f | 20 |
c | t | 21 |
c | f | 10 |
Then you create a new page in the same report, set page properties like below
create measure like below(for your requirement, you could try to change meausre like below
measure=if(year(min('table'[date]))=year(today()),year(min('table'[date])),blank())
)
Measure = if(MIN('trend line'[status])="t", "t", BLANK())
add multi-card visual in tooltip page
Then return to page which contains line chart and set line chart like below
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi ISUGraber,
There is no setting to disbale tooltip conditionally, so one workaround is that create a tooltip page and use this in chart.
Below is my sample, if your sample is not similar to below, please correct me and inform me your sample data.
namestatusamount
a | t | 10 |
a | f | 12 |
b | t | 13 |
b | f | 20 |
c | t | 21 |
c | f | 10 |
Then you create a new page in the same report, set page properties like below
create measure like below(for your requirement, you could try to change meausre like below
measure=if(year(min('table'[date]))=year(today()),year(min('table'[date])),blank())
)
Measure = if(MIN('trend line'[status])="t", "t", BLANK())
add multi-card visual in tooltip page
Then return to page which contains line chart and set line chart like below
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |