views:

277

answers:

1

My line is only 1 pixel thick. How can I thicken it? I use MontoTouch.net but Objective-C is fine in the answer.

ctx.SetRGBStrokeColor (1,1,1, 1f);
ctx.MoveTo(130,110);
ctx.AddLineToPoint(200,200);
ctx.StrokePath();
+2  A: 

ctx.LineWidth = 5;

Ian Henry