vote up 9 vote down star
9

I'm working on an interactive interface using SVG and Javascript/jQuery, and I'm trying to decide between Raphael and jQuery SVG. I'd like to know (1) what the trade-offs are between the two, and (2) where the development momentum seems to be.

I don't need the VML/IE support in Raphael, or the plotting abilities of jQuery SVG. I'm primarily interested in the most elegant way to create, animate, and manipulate individual items on an SVG canvas.

Thanks!

flag

78% accept rate

9 Answers

vote up 0 vote down

Which yellow page? In my defense this is an R&D site. However any suggestions would be good. tks..

link|flag
vote up 1 vote down

You should also take a look at svgweb. It uses flash to render svg in IE, and optionally on other browsers (in the cases where it supports more than the browser itself does).

http://code.google.com/p/svgweb/

link|flag
vote up 6 vote down

I'm a huge fan of Raphael and the development momentum seems to be going strong (version 0.85 was released late last week). Another big plus is that its developer, Dmitry Baranovskiy, is currently working on a Raphael charting plugin, g.raphael, which looks like its shaping up to be pretty slick (there are a few samples of the output from the early versions on Flickr).

However, just to throw another possible contender into the SVG library mix, Google's SVG Web looks very promising indeed (even though I'm not a big fan of Flash, which it uses to render in non-SVG compliant browsers). Probably one to watch, especially with the upcoming SVG Open conference.

link|flag
vote up 0 vote down

techfandu This link is currently broken in IE7: http://keith-wood.name/svgBasics.html

Does that mean that by default the users have to download a plugin befoere it works in IE7/8?

link|flag
vote up 0 vote down

Perhaps you would also like to visit my website where I have been concentrating on Raphael. http://www.irunmywebsite.com/raphael/raphaelsource.html

link|flag
2  
Sorry but site site looks horrible. I love the work you do on Raphael, and would be very interested in checking out more progress, but after staring at a Yellow Page with a Yellow graph my Eyes go googly :-) It is very hard to find what is where on your site. You do some interesting things however! – drozzy Oct 9 at 17:26
vote up 1 vote down

I will throw my vote behind Raphael - the cross-browser support, clean API and consistent updates (so far) make it a joy to use. It plays very nicely with jQuery too. Processing is cool, but more useful as a demo for bleeding-edge stuff at the moment.

link|flag
vote up 7 vote down

For posterity, I'd like to note that I ended up choosing Raphael, because of the clean API and "free" IE support, and also because the active development looks promising (event support was just added in 0.7, for instance). However, I'll leave the question unanswered, and I'd still be interested to hear about others' experiences using Javascript + SVG libraries.

link|flag
vote up 1 vote down

I think it is not totally unrelated but did you consider canvas? something like Process JS can make it simpler.

link|flag
1  
I have looked at both canvas in general and Processing in particular. The problem is that (as far I know) mouse events cannot be easily attached to individual items on the canvas, for features like drag and drop, unlike SVG, which is fully exposed to the DOM. – Luke Dennis Feb 27 at 17:38
1  
I haven't done extensive work with canvas but have a look at Flot - jquery plugin that uses canvas for charts. It handles mouseclicks pretty well. – Bharani Mar 2 at 6:56
Mouseclicks yes, but not dom events on items in the canvas. In fact, for Canvas you can't put the event handler on the canvas (because of IE), although you can put it on a div that holds the canvas. – Nosredna Nov 11 at 19:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.