I'm trying to remove the 15px right margin in the data grid headers and I nothing I override in CSS seems to eliminate all the wasted space.
I have tried the following in CSS with no luck:
.e-grid .e-gridheader .e-sortfilter .e-fltr-icon .e-headercelldiv {
padding-left: 4px;
padding-right: 4px;
margin: 0px 0px 0px 0px;
}
e-grid .e-gridheader .e-sortfilter .e-headercelldiv {
padding-left: 4px;
padding-right: 4px;
margin: 0px 0px 0px 0px;
}
-Dan