Chart.js Text color
The working code is this:
Chart.defaults.global.defaultFontColor = "#fff";
Have fun :)
In Chart.js v3 it can be achieved with:
Chart.defaults.color = "#ff0000";
scaleFontColor
is used to change the color of the labels.
Instead of putting it in your datasets you should add it as a parameter in your function, like this:
window.myLine = new Chart(ctx).Line(lineChartData, {
responsive: true, scaleFontColor: "#FFFFFF" }
});