For datagrids with the Hover option enable, change the value of $grid-bg-hover in custom-variables to control the color.
Hello David,
To achieve this
you need to modify the CSS styles.
You can do it by adding a custom class on your Data Grid 2 and then targeting that class with CSS to change the background color on hover.
Sample css
.my-datagrid-hover td:hover
{
background-color: lightblue;
};