cancel
Showing results for 
Search instead for 
Did you mean: 
intapiuser
Community Team Member
Community Team Member
Many customers have expressed interest in removing the horizontal gray lines that run to the end of the pivot table widget under the column headers:
This script will remove those lines for a pivot table:
widget.on("domready", function(w){
 var tags = $('td.phantom', element);
 for(var i=0; i<tags.length; i++) {
  tags[i].style.width = '0px';
 }
})
Result:
Rate this article:
Version history
Last update:
‎03-02-2023 09:08 AM
Updated by:
Contributors