Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
datagrrl
Creator III
Creator III

How can I get Zeros without Slashes

I am just learning to create a theme in Qlik Sense.

My customer doesn't like the zeros with slashes. What is the best way to get rid of these? I have yet to make any font changes work in my theme.

If anyone could point me in the right direction I would appreciate it.

 

 

1 Reply
Spivey
Partner - Contributor III
Partner - Contributor III

My understanding is that the upcoming release of Qlik Sense for Windows will use the Source Sans Pro font that Qlik Sense SaaS uses. Nevertheless, to add that font to a custom theme, add this to the CSS file:

 

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

Qlik Support.qv-object :not([font-family]) {
	font-family: QlikView Sans,sans-serif;
}

.qv-object * {
    font-family: 'Source Sans Pro', sans-serif!important;
}

 

That second line comes from this Qlik Support article about overriding the default font with a custom theme.