Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
LakshmiprasanthSiva
Contributor
Contributor

Need to apply borders for only few visualizations like charts, tables etc., using CSS theme file

To add borders to every visualization in the application, we have written code in a JSON theme file. The code that we used is shown below.

.qv-inner-object {
border: 0.5px solid hsl(100,8%,85%)!Important;
padding: 0px;
}

We now wish to implement these modifications for a select few visualizations, such as tables, charts, and KPIs. How can we use code to accomplish this?

Labels (2)
1 Reply
henrikalmen
Specialist II
Specialist II

Instead of .qv-inner-object, try e.g. .qv-object-filterpane or .qv-object-barchart - you'll find these and other classes in the <article> element in the html source.