I'm trying reproducing this example from chart.js documentation: https://www.chartjs.org/docs/latest/samples/line/interpolation.html
But I keep getting this error:
Uncaught ReferenceError: Utils is not defined
I tried searching for "Utils" in Chart.js documentation but with no success. Any idea how can I use it correctly? I'm obviously missing something basic.
Instead of
borderColor: Utils.CHART_COLORS.red,
I used
borderColor: '#00FF00', successfully.