Forum Discussion
Multi line hover text
Hello,
I want to set a simple note (but multi line note) when the user is hover with is mouse on a shape (or button or any thing else) it will popup, like the attached screenshot, but as I said I need it with multi line.
Is it possible ?
in excel it's easy to set a similar message..
Hey xl0911 ,
you can achieve multiline text like this:by creating a measure like so:
__vizAid multiline text = " first line" & UNICHAR(10) & "second line"The DAX function UNICHAR(10) is ingesting a new line between the two strings.
The problem I'm often facing is that the button does not have a tooltip or something. For this reason I often create something like this:- info button as base level
- align an "empty" card visual with a transparent background on top of the button.
- create a report tooltip that appears when hovering over the card visual
- group the button and card visual with the maintain layer order set to on
Wondering about your solution, maybe you can post your solution here.
Regards,
Tom
1 Reply
- TomMartensSuper User
Hey xl0911 ,
you can achieve multiline text like this:by creating a measure like so:
__vizAid multiline text = " first line" & UNICHAR(10) & "second line"The DAX function UNICHAR(10) is ingesting a new line between the two strings.
The problem I'm often facing is that the button does not have a tooltip or something. For this reason I often create something like this:- info button as base level
- align an "empty" card visual with a transparent background on top of the button.
- create a report tooltip that appears when hovering over the card visual
- group the button and card visual with the maintain layer order set to on
Wondering about your solution, maybe you can post your solution here.
Regards,
Tom