Hide Pagination option

Hello Team ,

We are using open source BI Helical Insight version 5. Created tabular report. Is there an option to hide the pagination of the report in the dashboard? Please refer screenshot.

We are displaying multiple tabular reports in a dashboard and the number of rows in each table will be less than 5. We want to hide the pagination to be hidden for all the reports.

image

Thank You,
Netta.

Hello,

Yes, you can hide the pagination of any table using CSS below at the dashboard level. You can even put it at the application level CSS in loginbody.jsp also so that any new table reports also will have this hidden.

.ant-table-pagination{

display :none !important;

}

To apply this at a specific dashboard, right-click on an empty area of the dashboard. Go to the CSS section.

Paste the above CSS code.

Click the Apply button. You can even add componentID also in front of this code so that this code only affects that specific table report and not other table report in the dashboard. This CSS code can even be put at the individual report CSS level also.

Thank You