I’m trying to position text within the SVG canvas, by supplying x, y coordinates
var t = paper.text(50, 50, "Raphaël\nkicks\nbutt!");
but does not position the text like all other objects…
x, y coordinates specify the center of the object! Not the “left and top most” pixel!
I would like to “left align” the text along a line, same as standard HTML.
Help would be very much appreciated.
Resolved!
By using the following
it now aligns text on the left.