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: 
random_user_3869
Partner - Creator III
Partner - Creator III

Is it possible to increase font size for label title from pie chart/line chart/bar chart

Hey,

i'm using qlik saas and i would like to increase label tittle of the following figures:

- pie chart

- bar chart

- line chart

 

Is it posible to use css code to do this ?

If so how ?

thanks a lot !!!

 

Labels (2)
1 Solution

Accepted Solutions
Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

You can add barChart (and other) in the json (under object), like 

 

"barChart":{
  "title":{
    "main":{
      "fontSize": "84px"
    }
  }
}

 

amartinez35_0-1660227512133.png

 

I have attach the cusual theme.json with this modification.

Help users find answers! Don't forget to mark a solution that worked for you!

View solution in original post

4 Replies
Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

 

You can create a theme : https://help.qlik.com/en-US/sense-developer/May2022/Subsystems/Extensions/Content/Sense_Extensions/c...

 

For exemple : https://sensetheme.com/ 

 

Aurélien

Help users find answers! Don't forget to mark a solution that worked for you!
random_user_3869
Partner - Creator III
Partner - Creator III
Author

@Aurelien_Martinez  I've already downloaded a theme from sense theme 'casual'

But as i look into the json, idon't know how to apply specifically the font size to a specific bar chart (i really mean only the title).

Thank you

Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

You can add barChart (and other) in the json (under object), like 

 

"barChart":{
  "title":{
    "main":{
      "fontSize": "84px"
    }
  }
}

 

amartinez35_0-1660227512133.png

 

I have attach the cusual theme.json with this modification.

Help users find answers! Don't forget to mark a solution that worked for you!
random_user_3869
Partner - Creator III
Partner - Creator III
Author

It worked thank you very much !!!