Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I don't see an option for a border for the Vizlib Combo Chart, has anyone found a solution for this?
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;
}
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;
}
Thank you!