Forum Discussion
Multi line hover text
- 4 years ago
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
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