0

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();
Ian Vink
  • 66,960
  • 104
  • 341
  • 555

1 Answers1

2

ctx.LineWidth = 5;

Ian Henry
  • 22,255
  • 4
  • 50
  • 61