Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
We wanted to add a user friendly message to an input box in the formate pane which was added to our custom visual. We did specify description along in the property but is dosen't seem to appear any where. Can we add a tool tip / friendly message for input boxes in the formate pane.
Solved! Go to Solution.
Hi @Anonymous,
Assuming I'm reading this right, do you mean a message in the property tooltip, like this?
If so, then you indeed just need to add a description property to your object declaration. I note that you say you've done this, but I'll just include what I did for reference so that you can cross-check:
...
"myTextProperty": {
"displayName": "My Text Property",
"description": "This should be a user friendly message...",
"type": {
"text": true
}
}
...
If this is how you've set it up at your end, we might need a bit more info to assist, but this is all I've ever had to do.
Regards,
Daniel
P.S. While we're on the subject, it might be handy to know that you can also use the JavaScript string escape sequences (such as \n and \t) in these properties, as well as unicode, e.g.:
...
"myTextProperty": {
"displayName": "My Text Property",
"description": "This should be a user friendly message...\n\nAnd this is a new paragraph within the tooltip\n\n\t• This kind of looks like a bullet\n\nAnd now we're back to normal ",
"type": {
"text": true
}
}
...
(the forum's code formatter seems to strip out the emoji but it is in the code I pasted)
HTML won't work in here though, so if you want to get fancy, you have to work with the above.
Proud to be a Super User!
On how to ask a technical question, if you really want an answer (courtesy of SQLBI)
Hi @Anonymous,
Assuming I'm reading this right, do you mean a message in the property tooltip, like this?
If so, then you indeed just need to add a description property to your object declaration. I note that you say you've done this, but I'll just include what I did for reference so that you can cross-check:
...
"myTextProperty": {
"displayName": "My Text Property",
"description": "This should be a user friendly message...",
"type": {
"text": true
}
}
...
If this is how you've set it up at your end, we might need a bit more info to assist, but this is all I've ever had to do.
Regards,
Daniel
P.S. While we're on the subject, it might be handy to know that you can also use the JavaScript string escape sequences (such as \n and \t) in these properties, as well as unicode, e.g.:
...
"myTextProperty": {
"displayName": "My Text Property",
"description": "This should be a user friendly message...\n\nAnd this is a new paragraph within the tooltip\n\n\t• This kind of looks like a bullet\n\nAnd now we're back to normal ",
"type": {
"text": true
}
}
...
(the forum's code formatter seems to strip out the emoji but it is in the code I pasted)
HTML won't work in here though, so if you want to get fancy, you have to work with the above.
Proud to be a Super User!
On how to ask a technical question, if you really want an answer (courtesy of SQLBI)
Thank you. It worked but we are getting tooltip only on hover over the label. Can we get it when we hover over the input box ?
Or Is there a way to show the message below the input box. Similar as a label
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.