var startPoint = (Math.PI/180)*0;var endPoint = (Math.PI/180)*360;Then you should start the path and draw your circle with the arc method:context.beginPath();context.arc(200,200,150,startPoint,endPoint,true);Finally, add the line to fill your circle with