I have a question regarding vertical scaling with Raphael using transform. I tried the following code:
var transform = "sx"+dx;
selRect.transform(transform);
but that doesn’t seem to do the trick. Anyone ideas how to solve this one?
Thanks in advance.
Try using
Also, don’t forget you can optionally indicate the point you want to scale around… so
Will offset the resulting rect differently. It can certainly come in handy on occasion!