Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
gkcchowdary
Creator
Creator

how to change sheet background color in Qlik sense

Hi

I have requirement need to be change sheet background color(Black color)in Qlik sense.i am searching in sheet properties but no use.

please let me know how to do it in simple way.

 

Thanks

krishna 

1 Solution

Accepted Solutions
saso_1970
Creator
Creator

Hi no properties in qlik sense UI to change the sheet background , you have two option;

1.Create theme

2. Use multi KPI Object,

I will explain KPI Object , First drag and drop the multi KPI on sheet from Custom Objects -> Qlik visualization bundle in measure and label add =' ' in appearance section find styles property and add following CSS

.qvt-sheet {
background: #000000 !important;
}

View solution in original post

7 Replies
saso_1970
Creator
Creator

Hi no properties in qlik sense UI to change the sheet background , you have two option;

1.Create theme

2. Use multi KPI Object,

I will explain KPI Object , First drag and drop the multi KPI on sheet from Custom Objects -> Qlik visualization bundle in measure and label add =' ' in appearance section find styles property and add following CSS

.qvt-sheet {
background: #000000 !important;
}

gkcchowdary
Creator
Creator
Author

Hi 
Thanks for your replay.

Using second option KPI object it is working. but i need to create the theme for that.

if any idea please let me know how to create and how to use that.

Thanks

syedmazhar
Contributor III
Contributor III

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;}

akshay_chavan
Contributor II
Contributor II

HI @saso_1970 ,

How to give background color to the title of any chart in qlik sense?

 

Regards,

EliGohar
Partner - Creator III
Partner - Creator III

Try this:

.qv-object .qv-object-title {
    background-color: black;
}
firoz24
Creator
Creator

Its Not working, Kindly help me to change the background color

Thank you