coloring a line on canvas

Dawbmihzviczp

New Member
I am trying to color the following line, but my canvas either colors all the lines or does not color at all. Any help would be appreciated \[code\]canvas.save(); canvas.scale(1, 0.75); canvas.beginPath(); canvas.arc(100, 95, 8, 0, Math.PI * 2, false); canvas.stroke(); canvas.closePath(); canvas.restore();\[/code\]
 
Top