Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to change Background color in Qlik sense Sheet. While Searching i found procedure to set only black color. apart from White and Black colors how can i set others colors.
I would look into the highvis theme. I think you can extract it if you have Sense Server. Search for the highvis.zip files.
Refer below link,
Thanks for your reply,
Using highvis.zip i can able to set only black color. Actually i need to set other colors also.
You will have to go with a custom style sheet/ theme to achieve this.
you can try this extension Qlik Branch
Add a multi KPI on your sheet and past the below code if you to change the background color of your sheet.
The below code will change the sheet color and also it will make MultiKPI object transparent.
.qv-panel-sheet {
background: linear-gradient(0deg, rgba(253,253,253,1) 0%, rgba(253,253,253,1) 0%);}
.qv-object-qlik-multi-kpi { display:none; }
.qv-mode-edit .qv-object-qlik-multi-kpi { display:flex; }
Use the below code if you want to change the filter color.
.qv-listbox .serverLocked, .qv-listbox .serverSelected, .qv-listbox li.selected {
background-color: #7500c0;
color: #fff;
border-bottom: 1px solid ##7500c0;}