I know how to draw a partial circle(arc) on a HTML5 Canvas but how do I draw a stretched arc on a Canvas?
How do I draw an arc like the one below(where the arc is stetched/the radius changes)?

This is how I draw a normal arc, maybe theres a function that can stretch this arc?
context.moveTo(centerX, centerY);
context.arc(centerX, centerY, radius, startingAngle, endingAngle, false);
context.closePath();
You can use transforms. As in this live example.