DXC
09-23-2025Cloud Apps
How to increase the display more rows in Pivot Table?
Hi,
we have a need to display multiple rows in a pivot table widget, but it appears that there is a limit at 20, as the screenshot below the plus disappeared when reached to the limit.
Is there a way allows to add more rows?
Hi DXC
Try the script below on the widget:
widget.manifest.data.panels.forEach(function(p){
p.metadata.maxitems = 70; //replace with the number you need
})
Works on L2024.3! :)