Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
wyazdani
Contributor
Contributor

Highlighting a row without filled color

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

Labels (1)
  • Chart

1 Reply
vinieme12
Champion III
Champion III

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;
}

 

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.