views:

65

answers:

2

could someone guide me on how web based online diagramming software's work. i would really appreciate if you could point me example resource to get some knowledge on this.

Following are the some of the samples web based online tools that i have been trying to studying

www.creatly.com http://smoot.sourceforge.net/smoot/

this second example has source code for the implementation as well. but if any of you have prior experience on this subject , could you share with us.

+2  A: 

I haven't heard of diagrams being drawn clint side though I suppose it's possible using activex-software, flash or some type of module that the user installs on his/her browser. The most common is to use server-side software to generate images. My experience in this area comes from PHP and from the image generating libraries there. You can draw pretty much anything. I've also come across packages like, Image_graph, free and open source, specifically aimed at diagrams.

Martin
+3  A: 

Take a look at Yahoo! Pipes source. It uses <canvas> and it looks great! And if you need a library to help you - take a look at Raphael and its special graph plugin gRaphael.

NilColor
thank you for the reply NilColor, i tried to get the source of yahoo pipes , but it is not provided :(,
KItis
Yes its not. But you can get a general idea about using canvas tag.
NilColor