In chart.js how can I set the set the font size for just the x axis labels without touching global config?
I\'ve already tried setting the \'scaleFontSize\' option my op
Try this simple solution:
myChart.options.scales.yAxes[0].ticks.fontSize = 40 ; myChart.update();