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 is working
options: { scales: { xAxes: [{ ticks: { fontSize: 10 } }] } }