Chartjs-How do I customise doughnut chart using chart.js

0👍

You can analyze the javascript code of your exemple.
I think that the function that doing this, is this one:

paths.enter()
    .append('svg:path')
        .attr('d', arc)
        .style('fill', function(d, i) {
            return color(i);
        })
        .style('stroke', '#FFFFFF')
        .on(eventObj)

Leave a comment