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: 
ms206147
Contributor II
Contributor II

Border for the Vizlib Combo Chart

I don't see an option for a  border for the Vizlib Combo Chart, has anyone found a solution for this?

Labels (2)
1 Solution

Accepted Solutions
robert_mika
MVP
MVP

Borders were added to Qlik native object after Vzlib acquisition.

Not much is happening now beside bug fixes.

As this is 3 party ext I would suggest communicate with Vizlib (Insightsoftware) help or try via CSS.

 

Similar to below:

/* Targeting by Object ID (Most reliable) */


div[tid="your_object_id"] {
border: 2px solid #3498db !important;
border-radius: 8px;
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

/* Targeting Vizlib Combo Chart specifically by class */
.vizlib-combo-chart {
border: 1px solid #cccccc;
}

View solution in original post

2 Replies
robert_mika
MVP
MVP

Borders were added to Qlik native object after Vzlib acquisition.

Not much is happening now beside bug fixes.

As this is 3 party ext I would suggest communicate with Vizlib (Insightsoftware) help or try via CSS.

 

Similar to below:

/* Targeting by Object ID (Most reliable) */


div[tid="your_object_id"] {
border: 2px solid #3498db !important;
border-radius: 8px;
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

/* Targeting Vizlib Combo Chart specifically by class */
.vizlib-combo-chart {
border: 1px solid #cccccc;
}

ms206147
Contributor II
Contributor II
Author

Thank you!