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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Bobi
Partner - Contributor II
Partner - Contributor II

Border-color around objects (themes)

 Hi. I am trying to get green color (like a frame) around every object in the app. 

 

 I have tried with a few different suggestions, including the one below. Anyone having a suggestion? I want this to happen in all objects (line graphs, pie charts and so on).

.qv-listbox {
    border-color: green!Important;
}

 

Labels (1)
1 Reply
Bobi
Partner - Contributor II
Partner - Contributor II
Author

Hi. This worked for me to get it around all objects:

Added this to css-file:

 

.qv-inner-object {

    border: 3px solid hsl(120, 100%, 50%);

    padding: 5px;

   }

 

However it became very ugly, I only want to add it to pie-chart and line-charts.

 

I have tried to put in some code in the json-file instead, added this directly after object. (but no success). Any ideas?

 

"barChart": {        

        "border": {
         "border-color": "#46C646",
         "fontSize": "3px"
}
},