Chartjs-How can I avoid NaN on pie chart label in Chart JS

0๐Ÿ‘

I solve my problem with this code below. You can read the information here: Formatting

formatter: value => { return value + '%';} 

Leave a comment