Forum Discussion
pankajsonkul
9 years agoHelper I
change custom visual name
How to change custom visual name. it will shows only YourVisual
- 9 years ago
Thanks,
Its working if we change GUID.
I have change name and displayName but it is not working but when you change GUID starting text then and then it is working.
e.g.
If GUID is Part1010101010 then visual name display after hover over as "Part"
If GUID is Chart1010101010 then visual name display after hover over as "Chart".
So what ever text only in guid it will display as visual name.
TedPattison
9 years agoMicrosoft Employee
You can change the display name of a visual in the pbiviz.json file. The displayName property changes what is see by uses when they hover over your visual in the Visualizations list.
{
"visual": {
"name": "snazzyTable",
"displayName": "Snazzy Table", "guid": "PBI_CV_B9C6C6C7_9583_4BF9_B2E0_9CE157681851",
"visualClassName": "SnazzyTable",
"version": "1.0.0",
"description": "",
"supportUrl": "",
"gitHubUrl": ""
}Is this what you are after?
pankajsonkul
9 years agoHelper I
Thanks for reply.