Increase number of rows in tabular report

Hello Team Helical,

I am using Helical Insight Application version 3.1 and I want to show 25 rows per page in tabular report whenever it opens. By default, it shows 10 rows. How to increase the default number of rows per page?

Thank You
Riwim.

1 Like

Hello Riwim,

For setting the default number of rows per page to 25, add the following script in the JS Editor placeholder.

hi_container.set("preExecution",function(c){
			var viz_Options = c.get("viz_Options");
				viz_Options["rowCount"] = [25,50,75,100,125];
				c.set("viz_Options",viz_Options);
		});

Thank You
Team Helical