In this jsfiddle there\'s a line with a lineWidth of 1.
http://jsfiddle.net/mailrox/9bMPD/350/
e.g:
ctx.lineWidth = 1;
How
Or as this answer states, to get a width of 1, you need to start at a half pixel.
ctx.moveTo(50.5,150.5); ctx.lineTo(150.5,150.5);
http://jsfiddle.net/9bMPD/355/