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: 
paulyeo11
Master
Master

QS How to increase the word size bigger ?

Hi All

I am make using of mashup to display the impt chart in production line using TV , user request to have the title of the chart wording bigger , it is possible ? Now the size is very small , very hard to see it.

Paul

1 Solution

Accepted Solutions
Francis_Kabinoff
Former Employee
Former Employee

You can target .qv-object .qv-object-title in css. So something like


.qv-object .qv-object-title {

     font-size: 32px;

}

    

That should work. You can add any other css you want here to affect the titles. For instance, something I find useful with regards to the titles, you can get rid of the ellipsis and let the title wrap if you want by adding white-space: normal like so

.qv-object .qv-object-title {

     font-size: 32px;

     white-space: normal;

}

View solution in original post

3 Replies
undergrinder
Specialist II
Specialist II

Hi!

As far as I know it isn't possible to manipulate the title size.

If you work with mashup, you can make a workaround in html.

In Qlik Sense application clear the title, then you should add it in html.

HTH

G.

Francis_Kabinoff
Former Employee
Former Employee

You can target .qv-object .qv-object-title in css. So something like


.qv-object .qv-object-title {

     font-size: 32px;

}

    

That should work. You can add any other css you want here to affect the titles. For instance, something I find useful with regards to the titles, you can get rid of the ellipsis and let the title wrap if you want by adding white-space: normal like so

.qv-object .qv-object-title {

     font-size: 32px;

     white-space: normal;

}

paulyeo11
Master
Master
Author

Hi Francis

Thank you very much , i manage to make the font size big.

Paul