>>>>> "SM" == Stuart McMahon <[EMAIL PROTECTED]> writes:
SM> Hi, I am trying to draw points on the JSVGCanvas. Using small
SM> rectangles is one option but I am checking in case there is an
SM> easier method. I thought the path element would do the trick but
SM> it always joins the points. Is there a way to mark x,y points and
SM> not draw the lines in between?
Well you can fake it with something like:
<path d="M0,0h1 M10,10h1 M30 30h1"
stroke-width="1" fill="none" stroke="black"/>
This will draw a 1x1 line at (0,0) (10,10) (30,30)
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]