Forum Discussion

harish's avatar
harish
Cloud Apps
02-06-2024
Solved

Pivot table modifications

I have pivot chart , and i wanted to differentiate the total with double line so i used a script and i uploaded it in the respective widgets edit script option and i am getting the necessary changes .
The script follows :

 
//double line
 
widget.on('domready', function () {
$("td[class*='--row-13'] div.table-grid__content__inner").parent().parent().css('border-top','double');
$("td[class*='--col-12'] div.table-grid__content__inner").parent().parent().parent().css('border-left','double');
});

 

But i have other pivot table widgets , double line is coming in all those widgets which i don't want and even i dint applied the script in those widgets for example:
DRay 

 

so what changes i need to do ?