How to change the color of the axis values?

Hello i'm trying to cahnge the number in the axis of the chart to black. I've tried this:

msg.ui_control = {options: {
        scales: {
            yAxes: [{
                ticks: {
                    fontColor: 'black'
                },
            }],
          xAxes: [{
                ticks: {
                    fontColor: 'black'
                },
            }]
        } 

    }}

but it didn't work.... any ideas?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.