Remove Horizontal Gray Lines After Column Headers in Pivot Tables
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:
This was tested on 7.0.0.21003. Please note that custom scripting is not officially supported and always test thoroughly before upgrading or deploying to a production environment.
Please sign in to leave a comment.
Comments
4 comments