I am running python 3.12.4 dash 2.17.1 dash_ag_grid 31.2.0 on linux OpenSUSE Tumbleweed
I am using Dash AG Grid to build a table.
I use a getRowStyle{} statement to control the formatting style of certain rows as follows.
getRowStyle = { "styleConditions": [ {"condition": "params.data['Strategy Name'] === 'example3'", "style": {"backgroundColor": "#236d8c",},}, {"condition": "params.data['Strategy Name'] === 'example4'", "style": {"backgroundColor": "#267da1",},}, ], },
Is there a style that can be used to turn off the hover highlight for these rows only? Or another way to turn off the hover highlight for these rows only?
Thank you.