Chartjs-Chart.JS Data Element To Be settled as Euro Currency

0👍

The value formatting for the ticks should be placed inside:

scales: {
    yAxes: [{
        ticks: {
            fontSize: 18,
            callback: function(label, index, labels) {
                // PLACE HERE
            }
        }
    }]
}

If you had a small fiddle, I could have played with it more but here is an example you can refer to:
How do I customize y-axis labels on a Chart.js line chart?

Leave a comment