JSFiddle - React, Tailwind, and code Playground

JavaScript

// Custom Arc Attribute, position x&y, value portion of total, total value, Radius, width
var archtype = Raphael(0, 0, 200, 100);
archtype.customAttributes.arc = function (xloc, yloc, value, total, R, width) {
	if(!width) width = R * 0.4;
    var alpha = 360 / total * value,
        a = (90 - alpha) * Math.PI / 180,
		w = width / 2,
		r1 = R + w,
		r2 = R - w,
        x1 = xloc + r1 * Math.cos(a),
        y1 = yloc - r1 * Math.sin(a),
		x2 = xloc + r2 * Math.cos(a),
        y2 = yloc - r2 * Math.sin(a),
        path;
    if (total == value) {
        path = [
            ["M", xloc, yloc - r1],
            ["A", r1, r1, 0, 1, 1, xloc - 0.01, yloc - r1],
			["Z"],
			["M", xloc - 0.01, yloc - r2],
			["A", r2, r2, 0, 1, 0, xloc, yloc - r2],
			["Z"]
        ];
    } else {
        path = [
            ["M", xloc, yloc - r1],
            ["A", r1, r1, 0, +(alpha > 180), 1, x1, y1],
			["L", x2, y2],
			["A", r2, r2, 0, +(alpha > 180), 0,  xloc, yloc - r2],
			["L", xloc, yloc - r1],
			["Z"]
        ];
    }
    return {
        path: path
    };
};

//make an arc at 50,50 with a radius of 30 that grows from 0 to 40 of 100 with a bounce
var my_arc = archtype.path().attr({
	"fill": "#00f",
    "stroke": "#f00",
    "stroke-width": 5,
    arc: [50, 50, 0, 100, 30]
});

my_arc.animate({
    arc: [50, 50, 40, 100, 30]
}, 1500, "bounce");