Tooltips displaying "rgb(0,0,0)" instead of label value on bar chart

0👍

I have fixed it with the code above…

// Adding this to the this.data.labels initialization
labels: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10].map(eachToString),

// The eachToString function
function eachToString(el) {
    return el.toString()+"%";
}

But as the bug it is, the issue at Github remains open.

Leave a comment