Hi
I use this CSS code in order to enlarge the size of the data values in the bars chart
Now I also need to enlarge the x and the y axis label size
How to do this please?
<style>
    #myHighChart g.highcharts-data-label text {
            fill: white !important;
            font-weight: bold !important;
              font-size: 20px !important;     
          }        
</style>
 
		
		
		
		
		
	
			
		
		
			
					
		hi @jip31 
please use updated one , I hope you are refering  id in chart panel <chart id="size">
 <row depends="$css$">
<panel>
<html>
<style>
#size g[transform] text{
font-size:15px !important;
}
#size g.highcharts-xaxis-labels text {
font-size: 15px !important;
}
</style>
</html>
</panel>
</row>
with code
without code
 
		
		
		
		
		
	
			
		
		
			
					
		Hi @jip31 
can you please use this by replacing cuurent code
#size g[transform] text {
font-size:20px !important;
} 
in panel use id size 
id ="size"
---
If this reply helps you, an upvote/Karma would be appreciated.
Hi
It works but it doesnt enlarge the x labels and the y labels and that what I need
 
		
		
		
		
		
	
			
		
		
			
					
		hi @jip31 
please use updated one , I hope you are refering  id in chart panel <chart id="size">
 <row depends="$css$">
<panel>
<html>
<style>
#size g[transform] text{
font-size:15px !important;
}
#size g.highcharts-xaxis-labels text {
font-size: 15px !important;
}
</style>
</html>
</panel>
</row>
with code
without code
perfect, many thanks
