Forum Discussion

MikeGre's avatar
03-20-2024
Solved

Pivot Widget - Maximum Number of Values

Hello community, We came across this post from the old community : https://community-old.sisense.com/hc/en-us/community/posts/115000896608-Table-Widget-Maximum-Number-of-Columns We have tested this...
  • DRay's avatar
    03-25-2024

    Hi MikeGre,

    Can you see if this Widget script works to increase the Row limit? There is a built-in limit to try and prevent performance issues.

    widget.manifest.data.panels.forEach(function(p){

    p.metadata.maxitems = 25; //replace with the number you need

    })