Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Nir
Contributor II
Contributor II

Is there a way to increase BAR CHART fonts size?

Hi 

The text so small , not possible to present the chart on projector, is there a way to increase font size in qliksense ?

Capture.JPG

Labels (1)
  • Chart

6 Replies
shraddha_g
Partner - Master III
Partner - Master III

There is no option to change font size in Default BAR CHART..

Try out extension if any with this property

Joseph_Musekura
Support
Support

Hi @Nir ,

You need to implement your own custom themes  (see link below)

https://help.qlik.com/en-US/sense-developer/November2021/Subsystems/Extensions/Content/Sense_Extensi...

/joseph

Nir
Contributor II
Contributor II
Author

Thanks Joseph

it was nice to learn something new (I build this code below for my first learning theme and it work great for me on bar chart but is there a way also to change the text size in Combo Chart? 

Thx

Nir

 

{
"_inherit": false,


"object" : {
"label" : {
"name" : {"fontSize" : "24px"},
"value" : { "fontSize" : "30px"}
},
"axis" : {
"title" : {"fontSize" : "24px"},
"label" : {"fontSize" : "24px"}
}

}
}

Joseph_Musekura
Support
Support

@Nir ,
Sorry for the delayed answer (new year vacations).
Yes, you can check https://help.qlik.com/en-US/sense-developer/November2021/Subsystems/Extensions/Content/Sense_Extensi...  and scrolldown to comboChart example.   

comboChart.png

And further down there is a Full example (codes) with most objects

Full Ex.png

Nir
Contributor II
Contributor II
Author

better later than never 🙂 

I saw the above but this is not effecting the value , is it possible that value can't be changed the font size? 

I was trying this below and nothing happened as well :

please advice 

thx Nir

 

"object" : {

"comboChart":{
     "value" : { "fontSize" : "30px"}
},

Joseph_Musekura
Support
Support

Hi @Nir ,
I remember that I reported that issue related  "comboChart" and "waterfallChart" to our R&D.
And the solution was to  modify the "palettes" by removing "data": [] and "scales": []

and  only keep the "UI" : [ ] content

  "palettes": {
    "data": [],
    "ui": []
  },
  "scales": []
}

 

So it looks like the following instead:

  "palettes": {
     "ui": []
  }
}

 

Can you try that?
Regards,