Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Correct_Answer
Contributor III
Contributor III

QlikSense MULTI KPI font size and space between value and label

Hi All,

I am trying to use the Multi KPI object, but it is occupying more space on dashboard area. As shown below snap

IMG_20221202_185138.jpg

And I had applied the below code under multi KPI css style properties under appearance.to reduce the font size

CSS Script:

& . label*{

font-size: 50%

}

&. Value*{

font-size: 50%

}

Font got reduced to 50% but space is same as per below snap.

IMG_20221202_132332.jpg

  I want to eliminate the unwanted space on KPI to reduce the KPI space/grids on Dashboard.

Can anyone help on the same.

Your help will much appreciated.

Regards,

Correct Answer.

Labels (1)
  • SaaS

2 Replies
Loreline
Contributor II
Contributor II

Hello, did you find a solution to your problem?

colinhancox_wp
Contributor III
Contributor III

You can add the line-height property to your CSS.  So your script would change to:

& . label*{
font-size: 50%
line-height: 1em;
}
&. Value*{
font-size: 50%
line-height: 1em;
}

Experiment with different values to get the spacing you need; 1, 1.5, 2, etc.