How to make bigger the font of the axis

image

How can i configure the font-size of the axis of my charts, i currenly have the version 9.4.7 but i dont now how to configurate it

1 Like

welcome @ivancastillo1

I don’t believe that is an option at the moment. You would need to modify the code and then build your Grafana assets from source.

I am unable to believe that a popular OSS dashboard like Grafana cannot change the font size of the Axis and Legends!

it is doable with another plugin, not the one out of the box

business chart plugin

1 Like

Do you mean this plugin? - Business Charts plugin for Grafana | Grafana Labs

1 Like

yes that one or use dynamic text plugin with chart.js and use options to increase sizes

var options = {
    scales: {
        yAxes: [{
            ticks: {
                fontSize: 40
            }
        }]
    }
}

Would the second option require the Apache Echarts or it would work with the Grafana default time-series charts?

the linked documentation should help answer that

It seems to be a standalone panel for text, whereas I need to increase the font size of all existing time-series panels in a dashboard.