<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: change custom visual name in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/change-custom-visual-name/m-p/152206#M5144</link>
    <description>&lt;P&gt;You can change the display name of a visual&amp;nbsp;in the pbiviz.json file. &amp;nbsp;The &lt;STRONG&gt;displayName&lt;/STRONG&gt;&amp;nbsp;property changes what is see by uses when they hover over your visual in the Visualizations list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
  "visual": {
    "name": "snazzyTable",
&lt;STRONG&gt;    "displayName": "Snazzy Table",&lt;/STRONG&gt;    "guid": "PBI_CV_B9C6C6C7_9583_4BF9_B2E0_9CE157681851",
    "visualClassName": "SnazzyTable",
    "version": "1.0.0",
    "description": "",
    "supportUrl": "",
    "gitHubUrl": ""
  }&lt;/PRE&gt;&lt;P&gt;Is this what you are after?&lt;/P&gt;</description>
    <pubDate>Fri, 31 Mar 2017 18:47:33 GMT</pubDate>
    <dc:creator>TedPattison</dc:creator>
    <dc:date>2017-03-31T18:47:33Z</dc:date>
    <item>
      <title>change custom visual name</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/change-custom-visual-name/m-p/152024#M5140</link>
      <description>&lt;P&gt;How to change custom visual name.&lt;/P&gt;&lt;P&gt;it will shows only &amp;nbsp;YourVisual&lt;/P&gt;</description>
      <pubDate>Fri, 31 Mar 2017 11:08:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/change-custom-visual-name/m-p/152024#M5140</guid>
      <dc:creator>pankajsonkul</dc:creator>
      <dc:date>2017-03-31T11:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: change custom visual name</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/change-custom-visual-name/m-p/152206#M5144</link>
      <description>&lt;P&gt;You can change the display name of a visual&amp;nbsp;in the pbiviz.json file. &amp;nbsp;The &lt;STRONG&gt;displayName&lt;/STRONG&gt;&amp;nbsp;property changes what is see by uses when they hover over your visual in the Visualizations list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
  "visual": {
    "name": "snazzyTable",
&lt;STRONG&gt;    "displayName": "Snazzy Table",&lt;/STRONG&gt;    "guid": "PBI_CV_B9C6C6C7_9583_4BF9_B2E0_9CE157681851",
    "visualClassName": "SnazzyTable",
    "version": "1.0.0",
    "description": "",
    "supportUrl": "",
    "gitHubUrl": ""
  }&lt;/PRE&gt;&lt;P&gt;Is this what you are after?&lt;/P&gt;</description>
      <pubDate>Fri, 31 Mar 2017 18:47:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/change-custom-visual-name/m-p/152206#M5144</guid>
      <dc:creator>TedPattison</dc:creator>
      <dc:date>2017-03-31T18:47:33Z</dc:date>
    </item>
    <item>
      <title>Re: change custom visual name</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/change-custom-visual-name/m-p/152476#M5155</link>
      <description>&lt;P&gt;Ted is right... If for any reason you needed to bring any changes the custom visual name, displayName &amp;nbsp;or even visual class name , that would be done in &lt;STRONG&gt;pbiviz.json &lt;/STRONG&gt;file of your project&lt;/P&gt;&lt;PRE&gt;{
    "visual": {
        "name": "&lt;STRONG&gt;CustomVisual&lt;/STRONG&gt;", // internal visual name (&lt;U&gt;should not contain spaces&lt;/U&gt;)
        "displayName": "&lt;STRONG&gt;Custom Visual!&lt;/STRONG&gt;", // visual name displayed to user (used in gallery)
        "guid": "PBI_CV_xxxxxxx", // a unique id for this visual MUST BE UNIQUE
        "visualClassName": "&lt;STRONG&gt;Custom&lt;/STRONG&gt;" // the entry class for your visual. (By default &lt;STRONG&gt;Visual&lt;/STRONG&gt;: visual.ts)
        "version": "1.0.0", // visual version. Should be semantic version (increment if you update the visual)
        "description": "", // description used in gallery
        "supportUrl": "", // url to where users can get support for this visual
        "gitHubUrl": "" // url to the source in github (if applicable)
    },&lt;/PRE&gt;</description>
      <pubDate>Sun, 02 Apr 2017 21:43:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/change-custom-visual-name/m-p/152476#M5155</guid>
      <dc:creator>MawashiKid</dc:creator>
      <dc:date>2017-04-02T21:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: change custom visual name</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/change-custom-visual-name/m-p/152553#M5158</link>
      <description>&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Its working if we change GUID.&lt;/P&gt;&lt;P&gt;I have change name and displayName but it is not working but when you change GUID starting text&amp;nbsp;then and then it is working.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;If GUID is Part1010101010 then visual name display after hover over&amp;nbsp;as "Part"&lt;/P&gt;&lt;P&gt;If GUID is Chart1010101010 then visual name display after hover over as "Chart".&lt;/P&gt;&lt;P&gt;So what ever text only&amp;nbsp;in guid it will display as visual name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2017 05:45:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/change-custom-visual-name/m-p/152553#M5158</guid>
      <dc:creator>pankajsonkul</dc:creator>
      <dc:date>2017-04-03T05:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: change custom visual name</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/change-custom-visual-name/m-p/152554#M5159</link>
      <description>&lt;P&gt;Thanks for reply.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2017 05:40:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/change-custom-visual-name/m-p/152554#M5159</guid>
      <dc:creator>pankajsonkul</dc:creator>
      <dc:date>2017-04-03T05:40:46Z</dc:date>
    </item>
  </channel>
</rss>

