<?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 How to Make a Table Visual Exceed 500 Rows / Looking for a Table .PBVIZ in Custom Visuals Development Discussion</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Make-a-Table-Visual-Exceed-500-Rows-Looking-for-a-Table/m-p/3977930#M9873</link>
    <description>&lt;P&gt;Hey guys,&lt;/P&gt;&lt;P&gt;I'm an intern who is trying to find a .pbviz file of a basic table visual that isn't super outdated. I'm looking for one because my managers and I noticed that the default table visual only goes up to (around?) 500 rows. I desperately need a .pbviz file for a custom table visual so I can set the maximum to 30,000 datapoints. I tried to see if Microsoft has their .pbviz file of the table visual uploaded anywhere, but I can't seem to find it. If anyone could help, please do! I'm desperate for a response and don't have enough time to create my own .pbviz from scratch - I'm just testing to see how my report will function with a lengthier table visual. Thank you to anyone who can help me!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jun 2024 20:10:57 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-06-06T20:10:57Z</dc:date>
    <item>
      <title>How to Make a Table Visual Exceed 500 Rows / Looking for a Table .PBVIZ</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Make-a-Table-Visual-Exceed-500-Rows-Looking-for-a-Table/m-p/3977930#M9873</link>
      <description>&lt;P&gt;Hey guys,&lt;/P&gt;&lt;P&gt;I'm an intern who is trying to find a .pbviz file of a basic table visual that isn't super outdated. I'm looking for one because my managers and I noticed that the default table visual only goes up to (around?) 500 rows. I desperately need a .pbviz file for a custom table visual so I can set the maximum to 30,000 datapoints. I tried to see if Microsoft has their .pbviz file of the table visual uploaded anywhere, but I can't seem to find it. If anyone could help, please do! I'm desperate for a response and don't have enough time to create my own .pbviz from scratch - I'm just testing to see how my report will function with a lengthier table visual. Thank you to anyone who can help me!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2024 20:10:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Make-a-Table-Visual-Exceed-500-Rows-Looking-for-a-Table/m-p/3977930#M9873</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-06-06T20:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to Make a Table Visual Exceed 500 Rows / Looking for a Table .PBVIZ</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Make-a-Table-Visual-Exceed-500-Rows-Looking-for-a-Table/m-p/3977976#M9874</link>
      <description>&lt;P&gt;@Anonymous&lt;/a&gt;&amp;nbsp;Not sure I understand this. The default table visual can scroll for many thousands of rows.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2024 20:49:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Make-a-Table-Visual-Exceed-500-Rows-Looking-for-a-Table/m-p/3977976#M9874</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-06-06T20:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to Make a Table Visual Exceed 500 Rows / Looking for a Table .PBVIZ</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Make-a-Table-Visual-Exceed-500-Rows-Looking-for-a-Table/m-p/3978151#M9876</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MS doesn't open source their table visual. Even if they did, core visuals and custom visuals are very different in how they work; custom visuals have a subset of curated APIs and permissions and run in sandboxed iframes (vs. core visuals which are inline div elements in the report canvas).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not aware of any open source examples that you can readily crib, but it would be fairly easy to integrate one of the many available JS table libraries, or even render a simple table if you're just looking to check things out before you go too far. For the latter, &lt;A href="https://coacervo.co/examples/table-dv-simple" target="_self"&gt;I wrote this intro to the table data view mapping&lt;/A&gt; a very long time ago (so it may not be 100% correct for the latest changes, but it may help you with rendering a basic table).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, you would still need to meet the requirement to handle more than 30K rows. You can use the &lt;A href="https://learn.microsoft.com/en-us/power-bi/developer/visuals/fetch-more-data" target="_self"&gt;fetch more data API&lt;/A&gt; to do this, and you'd have a couple of options. I might consider one of the following strategies if I were to attempt it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Recursively call this when your data is loaded, to try and get the maximum rows. note that this can be expensive and not great UX, as each request is a round-trip to Power BI and you may want to manage this asynchronously.&lt;/LI&gt;
&lt;LI&gt;Load a minimal length dataset by setting your row limit to a lot less than 30K and then invoke the API when the user scrolls the table (this would be similar to what the core visual does). Smaller windows are advantageous in that the underlying DAX query generated by Power BI is less expensive to execute and you will generally get better response times out of your UI.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 00:00:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Make-a-Table-Visual-Exceed-500-Rows-Looking-for-a-Table/m-p/3978151#M9876</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2024-06-07T00:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to Make a Table Visual Exceed 500 Rows / Looking for a Table .PBVIZ</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Make-a-Table-Visual-Exceed-500-Rows-Looking-for-a-Table/m-p/3980279#M9883</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/313"&gt;@Greg_Deckler&lt;/a&gt;&amp;nbsp;said, "The default table visual can scroll for many thousands of rows." and &lt;A href="https://learn.microsoft.com/en-us/power-bi/visuals/power-bi-data-points#table" target="_self"&gt;the documentation says&lt;/A&gt; "&lt;SPAN&gt;Virtualization (data windowing) by using Window of 500 rows at a time.". &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So even if you have bilions of rows, they will be "incrementaly" loaded as you scroll&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;However, if you really want to implement your own custom visual, as&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/397"&gt;@dm-p&lt;/a&gt;&amp;nbsp; said, you can draw you table using plenty of JS libs and then use the fetchMoreData API &lt;A href="https://learn.microsoft.com/en-us/power-bi/developer/visuals/fetch-more-data#considerations-and-limitations" target="_self"&gt;to fetch up to 1M rows&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;By the way,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/397"&gt;@dm-p&lt;/a&gt;&amp;nbsp;already developed an implentation of the fetchMoreData API (thanks for that) with table mapping:&amp;nbsp;&lt;A href="https://github.com/dm-p/powerbi-visuals-fetchMoreData-SDKv3" target="_blank"&gt;dm-p/powerbi-visuals-fetchMoreData-SDKv3: Simple implementation of fetchMoreData in the Power BI Custom Visuals SDK v3 (github.com)&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 15:00:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Make-a-Table-Visual-Exceed-500-Rows-Looking-for-a-Table/m-p/3980279#M9883</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-06-07T15:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to Make a Table Visual Exceed 500 Rows / Looking for a Table .PBVIZ</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Make-a-Table-Visual-Exceed-500-Rows-Looking-for-a-Table/m-p/3980370#M9886</link>
      <description>&lt;P&gt;@Anonymous&lt;/a&gt;&amp;nbsp;Another option might be Deneb. I've done some cool things with Deneb in terms of tables (like fixing totals for example)&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 15:30:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-to-Make-a-Table-Visual-Exceed-500-Rows-Looking-for-a-Table/m-p/3980370#M9886</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-06-07T15:30:35Z</dc:date>
    </item>
  </channel>
</rss>

