Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Add border to tables in Qlik Sense?

Hi,

How can I change the design of straight tables in Qlik Sense? Is there a way to add border around tables or change the background style?

3 Replies
arthur_dom
Creator III
Creator III

have a look at mashups... (it isn't native)

New to Qlik Sense Videos

Mashup Builder for Demo

Not applicable
Author

Thanks...I am looking for a solution that I can use on Qlik Cloud. So instead of creating mashup I would rather to find a way in Qlik Sense...Are u aware of any solutions?

Thanks!

Qlik Sense: How to set custom colors by measure in a bar chart

Kattisurabhi
Contributor
Contributor

Hi, 

You could use the following CSS code, in a MultiKPI field if you need just for that particular app.

Or if you want to set it globally, for all the tables, you could set it in the theme's css file. 

 

.qv-object-table {
padding-right : 20px;
padding-left : 20px;
padding-top : 5px;
border: 1px solid #c6c6c6;

}

 

This gives a border with a little space between the chart and the border.!!