I'm trying to do translate and rotate text and it seems to be scrambling my text pretty badly. I have an example here. http://jsfiddle.net/WAbZz/
var paper = Raphael("ocular", 500, 500);
var label = paper.text(100, 100, "Coeur et Artères");
label.attr('fill', '#555');
label.attr('font-size', '12px');
label.attr('cursor', 'pointer');
//label.transform("t200,200");// translate only
//label.transform("r98");// rotate only
label.transform("t200,200r98");// translate and rotate
The issue seems to happen on just rotate as well. There are commented out section to just translate and just rotate, so there is context if testing.
Am I doing something wrong, or should I be using a different method to do the translate and transform?
Thanks