<?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: Chiclet slicer shows only 1000 values in Custom Visuals Development Discussion</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/719302#M2273</link>
    <description>&lt;P&gt;Hi Evgenii,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the link. I have followed the same steps mentioned in the link when I started exploring.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I develop power bi reports and also very new to modifying custom visuals.&lt;BR /&gt;I have just started exploring two days before, so I barely know the dev part.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I follow below steps:&lt;/P&gt;&lt;P&gt;1. Extract chiclet slicer source code downloaded file from github&lt;BR /&gt;2. Ran 'npm i -g powerbi-visuals-tools' in powershell at extracted location&lt;BR /&gt;3. Ran 'pbiviz --install-cert'&lt;BR /&gt;4. After certificate was generated and import of certificate was successfull, I ran 'pbiviz start'&lt;BR /&gt;5. Got this error : error Could not find file: '.api/v1.13.0/PowerBI-visuals.d.ts'.&lt;BR /&gt;6. Ran 'pbiviz update' for the error&lt;BR /&gt;7. Got this error : Could not find file: 'node_modules/powerbi-visuals-utils-dataviewutils/lib/index.d.ts'.&lt;BR /&gt;8. Ran 'npm install powerbi-visuals-utils-formattingutils --save' for the error&lt;BR /&gt;9. Ran 'pbiviz start' again&lt;BR /&gt;8. got an error : Could not find file: "/node_modules/powerbi-models/dist/models-noexports.d.ts"&lt;BR /&gt;9. I fixed this error by removing the first '/', after this comiling was successfull.&lt;BR /&gt;10. Opened the code in visual studio code and modified the guid by incrementing it to 1. Compiled successfully.&lt;BR /&gt;11. Ran 'pbiviz package' and imported the visual to pbi report and it is blank.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know about console.log. If you can please elaborate on this one too.&lt;BR /&gt;If you could tell me how can I debug the problem it would be very helpful.&lt;/P&gt;</description>
    <pubDate>Wed, 19 Jun 2019 17:40:36 GMT</pubDate>
    <dc:creator>dheeraj10</dc:creator>
    <dc:date>2019-06-19T17:40:36Z</dc:date>
    <item>
      <title>Chiclet slicer shows only 1000 values</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/718095#M2257</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Is there anyway to remove 1000 limit in Chiclet slicer for rows in vertical orientation?&lt;BR /&gt;Please help me on this.</description>
      <pubDate>Tue, 18 Jun 2019 18:35:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/718095#M2257</guid>
      <dc:creator>dheeraj10</dc:creator>
      <dc:date>2019-06-18T18:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Chiclet slicer shows only 1000 values</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/718220#M2258</link>
      <description>&lt;P&gt;From reviewing the source code, the limit is set in the visual capabilities &lt;A href="https://github.com/microsoft/PowerBI-visuals-ChicletSlicer/blob/master/capabilities.json#L46" target="_self"&gt;here&lt;/A&gt; and &lt;A href="https://github.com/microsoft/PowerBI-visuals-ChicletSlicer/blob/master/capabilities.json#L56" target="_self"&gt;here&lt;/A&gt; (looks like it is capped for a couple of different configurations). The highest you can set this without specific coding work is 30,000.&lt;/P&gt;&lt;P&gt;You could clone the repo, make these changes and compile your own version. Alternatively, the &lt;A href="https://community.powerbi.com/t5/Custom-Visuals-Development/Power-BI-Custom-Visuals-Community/m-p/667211#M2029" target="_self"&gt;support link from the visual in AppSource&lt;/A&gt; advises the &lt;A href="https://community.powerbi.com/t5/Custom-Visuals-Ideas/idb-p/CustomVisualsIdeas" target="_self"&gt;custom visuals ideas forum&lt;/A&gt; is the right place to ask for new features for visuals, so you may have better luck in there if you're looking for the team to pick this up for you.&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2019 21:25:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/718220#M2258</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2019-06-18T21:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Chiclet slicer shows only 1000 values</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/718516#M2260</link>
      <description>&lt;P&gt;Thank you Daniel for your quick response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you suggested, I have done the changes in respective places but to make it 2000 from 1000. Compiled the code using pbiviz to generate .pbiviz file and imported that file in power BI report. But the rows section seems to revert back to 1000 even if I enter 2000 or any number beyond 1000. Am I missing something here ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="chiclet.PNG" style="width: 189px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/171745i0C2F53A5A249BD28/image-size/large?v=v2&amp;amp;px=999" role="button" title="chiclet.PNG" alt="chiclet.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 07:07:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/718516#M2260</guid>
      <dc:creator>dheeraj10</dc:creator>
      <dc:date>2019-06-19T07:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Chiclet slicer shows only 1000 values</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/718601#M2261</link>
      <description>Hi,&lt;BR /&gt;On mobile so don't have as much access to things (and nice formatting in posts!) but it looks like the limit is hard-coded for columns and rows here in the source code too: &lt;A href="https://github.com/microsoft/PowerBI-visuals-ChicletSlicer/blob/5c3e679155dfa5ad49fbd19eab50cf043812839f/src/chicletSlicer.ts#L147" target="_blank"&gt;https://github.com/microsoft/PowerBI-visuals-ChicletSlicer/blob/5c3e679155dfa5ad49fbd19eab50cf043812839f/src/chicletSlicer.ts#L147&lt;/A&gt;&lt;BR /&gt;One other thing: if you build your own version of a visual that's published to the marketplace, you need to change the guid property in pbiviz.json to be different. If it's the same as the published visual, it will always serve the one from the marketplace instead of the version from the compiled file. This is to ensure that reports always get the latest version of a published visual.&lt;BR /&gt;I'm hoping this helps you get a bit further.&lt;BR /&gt;Cheers,&lt;BR /&gt;Daniel</description>
      <pubDate>Wed, 19 Jun 2019 07:50:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/718601#M2261</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2019-06-19T07:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Chiclet slicer shows only 1000 values</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/718874#M2263</link>
      <description>&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot for the information you provided.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried changing the GUID by incrementing it to 1, but the visual is not loading after the change. I see a blank visual. Needed a clarification: based on what we should change the GUID.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 10:23:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/718874#M2263</guid>
      <dc:creator>dheeraj10</dc:creator>
      <dc:date>2019-06-19T10:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Chiclet slicer shows only 1000 values</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/719167#M2272</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Probably, an error was thrown somewhere.&lt;/P&gt;&lt;P&gt;Try to debug your visual in &lt;A href="https://docs.microsoft.com/en-US/power-bi/developer/custom-visual-develop-tutorial" target="_self"&gt;dev mode&lt;/A&gt; please or just leave "console.log" calls to trace the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Evgenii Elkin,&lt;BR /&gt;Software Engineer&lt;BR /&gt;Microsoft Power BI Custom Visuals&lt;BR /&gt;pbicvsupport@microsoft.com&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 15:10:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/719167#M2272</guid>
      <dc:creator>v-evelk</dc:creator>
      <dc:date>2019-06-19T15:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: Chiclet slicer shows only 1000 values</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/719302#M2273</link>
      <description>&lt;P&gt;Hi Evgenii,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the link. I have followed the same steps mentioned in the link when I started exploring.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I develop power bi reports and also very new to modifying custom visuals.&lt;BR /&gt;I have just started exploring two days before, so I barely know the dev part.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I follow below steps:&lt;/P&gt;&lt;P&gt;1. Extract chiclet slicer source code downloaded file from github&lt;BR /&gt;2. Ran 'npm i -g powerbi-visuals-tools' in powershell at extracted location&lt;BR /&gt;3. Ran 'pbiviz --install-cert'&lt;BR /&gt;4. After certificate was generated and import of certificate was successfull, I ran 'pbiviz start'&lt;BR /&gt;5. Got this error : error Could not find file: '.api/v1.13.0/PowerBI-visuals.d.ts'.&lt;BR /&gt;6. Ran 'pbiviz update' for the error&lt;BR /&gt;7. Got this error : Could not find file: 'node_modules/powerbi-visuals-utils-dataviewutils/lib/index.d.ts'.&lt;BR /&gt;8. Ran 'npm install powerbi-visuals-utils-formattingutils --save' for the error&lt;BR /&gt;9. Ran 'pbiviz start' again&lt;BR /&gt;8. got an error : Could not find file: "/node_modules/powerbi-models/dist/models-noexports.d.ts"&lt;BR /&gt;9. I fixed this error by removing the first '/', after this comiling was successfull.&lt;BR /&gt;10. Opened the code in visual studio code and modified the guid by incrementing it to 1. Compiled successfully.&lt;BR /&gt;11. Ran 'pbiviz package' and imported the visual to pbi report and it is blank.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know about console.log. If you can please elaborate on this one too.&lt;BR /&gt;If you could tell me how can I debug the problem it would be very helpful.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 17:40:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/719302#M2273</guid>
      <dc:creator>dheeraj10</dc:creator>
      <dc:date>2019-06-19T17:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: Chiclet slicer shows only 1000 values</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/719430#M2275</link>
      <description>&lt;P&gt;I think the issue would be that you're using a version of the tools that is too new for the visual. I suggest trying the following (I have tested these steps on my machine and they work for me):&lt;/P&gt;&lt;P&gt;&lt;FONT size="5"&gt;&lt;STRONG&gt;Cloning And Setup&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Clone the repository as normal.&lt;/LI&gt;&lt;LI&gt;Run: &lt;FONT face="courier new,courier"&gt;npm i -g powerbi-visuals-tools@1.13&lt;/FONT&gt; (version number is important)&lt;/LI&gt;&lt;LI&gt;You'll need to re-generate the certificate as the tooling has changed version. First run &lt;FONT face="courier new,courier"&gt;pbiviz --create-cert&lt;/FONT&gt; and then&amp;nbsp;&lt;FONT face="courier new,courier"&gt;pbiviz --install-cert&lt;/FONT&gt;&amp;nbsp;(it's two steps on the older tooling).&lt;/LI&gt;&lt;LI&gt;Run &lt;FONT face="courier new,courier"&gt;npm i&lt;/FONT&gt; from the root folder of the project to make sure that the correct dependencies are installed (these are specified in &lt;FONT face="courier new,courier"&gt;package.json&lt;/FONT&gt;; using &lt;FONT face="courier new,courier"&gt;npm i&lt;/FONT&gt; to install packages manually will install the latest and not necessarily the correct ones for the code you're working with).&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;FONT size="5"&gt;&lt;STRONG&gt;Verification&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;At this point, before making any changes, it's worth confirming that the code is in a ready state. The quickest way to do this is by using the development visual in the Power BI Surface as &lt;A href="https://docs.microsoft.com/en-us/power-bi/developer/custom-visual-develop-tutorial" target="_self"&gt;per the tutorial instructions&lt;/A&gt;. You can skip this section if you just want to compile the visual but it will be harder and more cumbersome to debug changes.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Run &lt;FONT face="courier new,courier"&gt;pbiviz start&lt;/FONT&gt; from the project folder. This should compile as expected.&lt;/LI&gt;&lt;LI&gt;Enable the developer visual as per the steps in the linked tutorial above.&lt;/LI&gt;&lt;LI&gt;Add the Developer Visual to the canvas of your report.&lt;/LI&gt;&lt;LI&gt;At this point, if the Developer Visual is blank (and not shaded grey with an error message) then the certificate is correctly allowing access to your code on your machine.&lt;/LI&gt;&lt;LI&gt;Drag you desired field(s) into the visual and check it's doing what you expect.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;FONT size="5"&gt;&lt;STRONG&gt;Modifying Source Code and Testing&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Now, you can make the changes you want. In your code, change the &lt;FONT face="courier new,courier"&gt;capabilities.json&lt;/FONT&gt; values, as well as the hard-coded settings previously linked from &lt;FONT face="courier new,courier"&gt;chicletSlicer.ts&lt;/FONT&gt;. When you save a file, the tooling should print the following in the console:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="j7uEI2q" style="width: 373px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/171937i3247D32645878CD1/image-size/large?v=v2&amp;amp;px=999" role="button" title="j7uEI2q" alt="j7uEI2q" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When you've made all your changes, refresh the visual in the service to confirm they work. You do this by clicking the reload button on the visual toolbar, e.g.:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LzVC6tA" style="width: 203px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/171942i2F7ACDE4C3328A1B/image-size/large?v=v2&amp;amp;px=999" role="button" title="LzVC6tA" alt="LzVC6tA" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Then, you should be able to make changes to the properties. For example, I changed my limit to&amp;nbsp;&lt;STRONG&gt;2000&lt;/STRONG&gt;, so if I type&amp;nbsp;&lt;STRONG&gt;2001&lt;/STRONG&gt;, the visual will cap it as follows:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yOnyQFn" style="width: 172px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/171943i5DA232E1BAAE8C4A/image-size/large?v=v2&amp;amp;px=999" role="button" title="yOnyQFn" alt="yOnyQFn" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="5"&gt;&lt;STRONG&gt;Packaging&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Once the code has been confirmed working, you can create the visual package:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Change &lt;FONT face="courier new,courier"&gt;guid&lt;/FONT&gt; in &lt;FONT face="courier new,courier"&gt;pbiviz.json&lt;/FONT&gt; to a new value (adding 1 to the last number should be enough, as you were doing previously).&lt;/LI&gt;&lt;LI&gt;Bonus points: it might also be worth changing the vales of &lt;FONT face="courier new,courier"&gt;name&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;displayName&lt;/FONT&gt; to indicate that this is your personalised Chiclet Slicer, so that if you have the marketplace version and your version loaded then you can confirm which is which by hovering over it, e.g.:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="C5FTLTG" style="width: 312px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/171947iA6923E29C48F06BC/image-size/large?v=v2&amp;amp;px=999" role="button" title="C5FTLTG" alt="C5FTLTG" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ahz8gPf" style="width: 151px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/171948iD1627AE12D08CD03/image-size/large?v=v2&amp;amp;px=999" role="button" title="ahz8gPf" alt="ahz8gPf" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Run &lt;FONT face="courier new,courier"&gt;pbiviz package&lt;/FONT&gt; from the root of your folder.&lt;/LI&gt;&lt;LI&gt;Load the generated package into Desktop or the service as normal.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;This will make the changes you want. If you need specific help with concepts such as&amp;nbsp;&lt;A href="https://www.w3schools.com/jsref/obj_console.asp" target="_self"&gt;console.log&lt;/A&gt; (which is one of the most fundamental debugging tools you can use) then it will be worth investing some time in becoming familiar with JavaScript - there are &lt;A href="https://www.w3schools.com/js/default.asp" target="_self"&gt;quite&lt;/A&gt; &lt;A href="https://www.codecademy.com/learn/introduction-to-javascript" target="_self"&gt;a&lt;/A&gt; &lt;A href="https://www.learn-js.org/" target="_self"&gt;few&lt;/A&gt; &lt;A href="https://javascript.info/" target="_self"&gt;sites&lt;/A&gt; &lt;A href="https://learnjavascript.online/" target="_self"&gt;that&lt;/A&gt; &lt;A href="https://learnjavascript.today/" target="_self"&gt;can&lt;/A&gt; &lt;A href="https://developer.mozilla.org/en-US/docs/Learn/JavaScript" target="_self"&gt;help&lt;/A&gt; with this. Once you have JavaScript concepts, down, then learning &lt;A href="https://www.typescriptlang.org/" target="_self"&gt;TypeScript&lt;/A&gt; (which is what the majority of custom visuals are written in) is a fairly natural extension, and actually a bit nicer.&lt;/P&gt;&lt;P&gt;Of course a good way to learn is to maybe have something like this visual working in the developer environment and them making changes and seeing what happens when you refresh the developer visual &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Good luck,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 19:56:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/719430#M2275</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2019-06-19T19:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: Chiclet slicer shows only 1000 values</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/719720#M2278</link>
      <description>&lt;P&gt;Thanks a lot Daniel for your guidance. It worked for me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 05:07:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/719720#M2278</guid>
      <dc:creator>dheeraj10</dc:creator>
      <dc:date>2019-06-20T05:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Chiclet slicer shows only 1000 values</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/719810#M2279</link>
      <description>Great! Glad you're all sorted &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Thu, 20 Jun 2019 06:52:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Chiclet-slicer-shows-only-1000-values/m-p/719810#M2279</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2019-06-20T06:52:41Z</dc:date>
    </item>
  </channel>
</rss>

