Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I wanted to see if anyone knows of a Row Hover color I can use to just outline the row when hovering over it. Meaning, I have red, green and gray cells in the chart and if I choose a colored row hover, it blocks out the cell color. Is there a transparent color with the outline just colored or bold I can use? Thanks in advance
You can highlight the row border by injecting custom css using a Multi-KPI object
Refer below on how to use a multi-kpi object to inject css
https://approbato.com/blog/customize-your-qlik-page-css-without-themes-trick/
below is the custom css for highlighting row border on hover
/*Highlight row on hover straight table*/
div[tid="OBJECTID"] tbody tr:hover {
border-color:#804f9b!important;
border-collapse:collapse!important;
border-style:solid!important;
border-width:3px!important;
}