Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
Could anyone please tell me how can I add a border to a line chart in the Qlik Sense application by creating a custom theme? I checked the properties of the line chart but couldn't find any option to set a border
@Manish sure 😉 Try something like this (always in the CSS file):
.qv-object-linechart {
border: 3px solid hsl(0, 100%, 50%);
padding: 5px;
}
Hello @Manish, you can edit the CSS file to customize the charts' external borders adding something like this:
.qv-inner-object {
border: 3px solid hsl(0, 100%, 50%);
padding: 5px;
}
Have a look at the attached example 😊 Notice that this will change the border for ALL the visualizations.
Many thanks for your reply. It was really helpful to know this.
Sorry, a quick follow-up question, Is it possible to give a border to one specific chart or one specific chart type (for example A line chart)?
@Manish sure 😉 Try something like this (always in the CSS file):
.qv-object-linechart {
border: 3px solid hsl(0, 100%, 50%);
padding: 5px;
}