Is there a way to change the length and breadth of a pivot table in a pivot table report?

Navaneeth1
Tera Guru

Navaneeth1_0-1714456759627.png

I have a pivot table report as shown above in a dashboard. Is there a way to change the length and breadth of the pivot table without changing the Dashboard tile? There seems to be way too much white space outside the table.

3 REPLIES 3

Sohail Khilji
Kilo Patron
Kilo Patron

Hi @Navaneeth1 ,

 

My be you can do it on the PORTAL page...

 

a) if you are using the OOTB Report widget on your page:
- set "CSS class" on the widget container, then in the Page CSS you can set the height of it:

.your-container-class-name .chart-container {
  height: 200px;
}

b) if it is an embedded Report widget in one of your existing widgets:
- set these styles in your widget CSS:

.chart-container {
  height: 200px;
}

You can wrap the report widget in a div with a class, then you can be more specific like in a).

Note: "chart-container" is a HTML element in the OOTB Report widget.

 

I hope this helps...


☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....

LinkedIn - Lets Connect

Dr Atul G- LNG
Tera Patron
Tera Patron

Hi @Navaneeth1 

 

No, mate. It is oOTB and based on widget size the table will increase / reduce.

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]

****************************************************************************************************************