I am having problems with formatting my chart axis and I am not able to find an example for the updated version 2.0.
How can I (for example) make 2000000 to €2.000.000?<
Instead a new function you can use a native javascript NumberFormat
yAxes: [{ ticks: { beginAtZero: true, callback: function(value, index, values) { return '€ ' + Intl.NumberFormat().format((value/1000)) + 'K'; } } }] //2000000 => € 2,000K