I need to change the selection color from blue(default color) to red bordered blue color in ag-grid.
Refer the pic the blue color should be converted to thick blue with red border
Add the following to your css
.ag-theme-balham .ag-row-selected {
background-color: #4abbff;
}
.ag-theme-balham .ag-ltr .ag-cell-focus {
border: 1px solid red;
}
© 2022 - 2024 — McMap. All rights reserved.