<?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: Editting an existing Custom Visual in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/137659#M4740</link>
    <description>&lt;P&gt;The Package.Json has a GUID value of 'Timeline1447991079100'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inside Timeline.js there is a var Timeline1447991079100; (function (Timeline1447991079100) {&amp;nbsp; **Lots of Code** }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inside {** Lots of Code **} is where i've made a tonne of changes.&amp;nbsp; None of which seem to have an effect on the visual itself.&amp;nbsp; For example there is a visual that shows "Y - Q - M - W - D" which has only a single reference in the code "this.granularitySelectors = ['Y', 'Q', 'M', 'W', 'D'];"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So i change it to "this.granularitySelectors = [&lt;STRONG&gt;'FY'&lt;/STRONG&gt;, 'Q', 'M', 'W', 'D'];", save the Timeline.js and putting it back into the .pbiviz using 7-Zip.&amp;nbsp;&amp;nbsp;Next load that .pbiviz into a Power BI desktop&amp;nbsp;file i have open&amp;nbsp;using the 'Import From File' under visualisations. I connect it to data and all of the visuals are completely unchanged.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If feels like there is some 'compile' step that i'm missing and i'm just updating source code.&lt;/P&gt;</description>
    <pubDate>Tue, 07 Mar 2017 03:53:13 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-03-07T03:53:13Z</dc:date>
    <item>
      <title>Editting an existing Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/137025#M4710</link>
      <description>&lt;P&gt;I'm new to creating custom visuals and have looked at a few tutorials.&amp;nbsp; The main style i saw was making use of PBIViz on the command prompt to make a new folder of resources, editing those and then using PBIViz to package them back up.&amp;nbsp; That process seems to&amp;nbsp;make fine sense.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I downloaded an existing visual, TimeLine Version 1.3.17, which comes as a .pbiviz file.&amp;nbsp; I've extracted the contents using 7-Zip into a development folder.&amp;nbsp; The file structure is a little different to the tutorial but still made sense and there is a package.json as the starting point and a resources folder it points to.&amp;nbsp; What is curious is that you have both a TypeScript file and a Javascript file making up the code.&amp;nbsp; Both files, while different lanuages, look to me as having the same modules just in their own respective languages.&amp;nbsp; There are some other files like .css and image files that seem straight forward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Problem:&lt;BR /&gt;No matter what changes i've made to either the Typescript file or the Javascript file, the custom visual stays exactly the same.&amp;nbsp; I've found the most easy and simple labels that exist on once in each file, and even just changed those.&amp;nbsp; No matter what i do, i can't see to have an effect on the custom visual in the slightest.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My process has been:&lt;BR /&gt;Extract all files from .pbiviz file using 7-zip.&amp;nbsp; Alter the .js &amp;amp; .ts files with the same changes.&amp;nbsp; Put those .js &amp;amp; .ts back into the .pbiviz using 7-Zip.&amp;nbsp; Open up Power BI Desktop and import custom visual into a project.&amp;nbsp; Add visual to the report and check. Discover nothing changes and weep a little.&lt;BR /&gt;&lt;BR /&gt;Help???&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 04:46:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/137025#M4710</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-06T04:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Editting an existing Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/137652#M4738</link>
      <description>&lt;P&gt;@Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will need to change all the code&amp;nbsp;related to &lt;EM&gt;guid &lt;/EM&gt;in package.json.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2017 03:18:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/137652#M4738</guid>
      <dc:creator>v-chuncz-msft</dc:creator>
      <dc:date>2017-03-07T03:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Editting an existing Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/137659#M4740</link>
      <description>&lt;P&gt;The Package.Json has a GUID value of 'Timeline1447991079100'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inside Timeline.js there is a var Timeline1447991079100; (function (Timeline1447991079100) {&amp;nbsp; **Lots of Code** }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inside {** Lots of Code **} is where i've made a tonne of changes.&amp;nbsp; None of which seem to have an effect on the visual itself.&amp;nbsp; For example there is a visual that shows "Y - Q - M - W - D" which has only a single reference in the code "this.granularitySelectors = ['Y', 'Q', 'M', 'W', 'D'];"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So i change it to "this.granularitySelectors = [&lt;STRONG&gt;'FY'&lt;/STRONG&gt;, 'Q', 'M', 'W', 'D'];", save the Timeline.js and putting it back into the .pbiviz using 7-Zip.&amp;nbsp;&amp;nbsp;Next load that .pbiviz into a Power BI desktop&amp;nbsp;file i have open&amp;nbsp;using the 'Import From File' under visualisations. I connect it to data and all of the visuals are completely unchanged.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If feels like there is some 'compile' step that i'm missing and i'm just updating source code.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2017 03:53:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/137659#M4740</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-07T03:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Editting an existing Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/137671#M4741</link>
      <description>&lt;P&gt;@Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I mean to replace 'Timeline1447991079100' with a new value.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2017 04:32:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/137671#M4741</guid>
      <dc:creator>v-chuncz-msft</dc:creator>
      <dc:date>2017-03-07T04:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Editting an existing Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/137682#M4742</link>
      <description>&lt;P&gt;I think this must be the right answer.&amp;nbsp; I incremented this GUID value by 1 and got an error when i've attempted to install the updated package.&amp;nbsp; The fact that i got the error makes me happy as thats something new.&amp;nbsp; Thanks for your help!&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2017 05:11:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/137682#M4742</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-07T05:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Editting an existing Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/492543#M15089</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you manage to get it right? Im also interested on making some alterations...but, I get an error&lt;/P&gt;</description>
      <pubDate>Fri, 17 Aug 2018 10:14:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/492543#M15089</guid>
      <dc:creator>naidoode</dc:creator>
      <dc:date>2018-08-17T10:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: Editting an existing Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/493470#M15111</link>
      <description>&lt;P&gt;I believe the API has changed, so I don't know if this will work anymore.&amp;nbsp; I haven't attempted it with the newer versions.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Aug 2018 22:42:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/493470#M15111</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-19T22:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Editting an existing Custom Visual</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/495787#M15167</link>
      <description>&lt;P&gt;We do not recommend to modify pbiviz files directly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since Timeline is avaiable on &lt;A href="https://github.com/Microsoft/powerbi-visuals-timeline" target="_self"&gt;GitHub&lt;/A&gt; you can fork this report and make all of required customizations.&lt;/P&gt;
&lt;P&gt;Do not forget to change GUID in pbiviz.json. Otherwise, ti will be taken from our CDN.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;pbicvsupport@microsoft.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 07:00:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Editting-an-existing-Custom-Visual/m-p/495787#M15167</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-08-22T07:00:48Z</dc:date>
    </item>
  </channel>
</rss>

