[Chartjs]-Chart.js how add euro symbol on each node

2👍

Instead of using the Euro symbol, try to use its Unicode as follows.

options: {
  scales: {
    y: {
      ticks: {
        callback: v => v + '\u20AC'
      }
    }
}

Leave a comment