Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
shayd
Contributor III
Contributor III

Qlik Sense table chart font size

Hi all,

I'm using Qlik Sense June 2019 edition.
I've been requested to try enlarging the table font size in a certain app, I'm using a table chart,
the one that comes with Qlik(Not an extension).

Seems like there is no option of adjusting the table text font size over the June 19 edition.
I would like to know if there is a hidden option of font size adjustment for the table chart (Pretty sure there isn't) or if there is an extension that acts as a table and have the setting of font adjustment.

Another option that was offered to me was to use "Sense Theme", I've tried to use it to adjust the font size but it's not applying to the table chart, also seems like there is no option to apply changes over the table chart(Screenshot attached).

shayd_0-1617872218437.png


Any suggestions?
Thanks.

1 Solution

Accepted Solutions
Quy_Nguyen
Specialist
Specialist

Hi,

Just create and download your theme, then open the json file, add these lines inside "object" (font size depends on your design):

"straightTable": {
            "header": {
                "fontSize""30px"
            },
            "content": {
                "fontSize""25px"
            }
        }
 
Hope it helps!
 

View solution in original post

6 Replies
Quy_Nguyen
Specialist
Specialist

Hi,

Just create and download your theme, then open the json file, add these lines inside "object" (font size depends on your design):

"straightTable": {
            "header": {
                "fontSize""30px"
            },
            "content": {
                "fontSize""25px"
            }
        }
 
Hope it helps!
 
shayd
Contributor III
Contributor III
Author

Thank you for your answer.
In continue to your answer, is there a way to bold a certain field?

Quy_Nguyen
Specialist
Specialist

Hi,

Yes you can. We have a theme.css file that you could put your custom css there.

You need a bit about html and css, for example I am making my dimension value bold in straight table, I have to find its html class then add my css to the theme.css file.

Quy_Nguyen_2-1618153696475.png

 

Quy_Nguyen_1-1618153633902.png

Hope it helps

 

shayd
Contributor III
Contributor III
Author

That's amazing!
But I don't know how to apply it on my side...

Quy_Nguyen
Specialist
Specialist

yeah, you should have knowledge about html/css to make it done.

shayd
Contributor III
Contributor III
Author

Thank you! 🙂