Selection in Angular Grid component
6 Sep 20221 minute to read
Customizing the row selection background
Row selection background can be customized using below CSS.
.e-grid td.e-selectionbackground {
background-color: #deecf9;
}
Customizing the cell selection background
Cell selection background can be customized using below CSS.
.e-grid td.e-cellselectionbackground {
background-color: #deecf9;
}
Customizing the column selection background
Column selection background can be customized using below CSS.
.e-grid .e-columnselection {
background-color: #deecf9;
}