How to draw a sequence diagram on an HTML page

we are developing a web application and need to draw a diagram, such as a uml diagram sequence. Is there a chart tool (any gwt, jsf, html, javascript, java, etc.) for this purpose?

NOTE. Graphics should not be images, because we need to select elements and take some actions in click events.

+6
source share
5 answers

I know one UML designer based on GWT. You can check gwtuml as one of the possible options. Here is a demo

+3
source

why aren't you trying to make html5 canvas ??

These guys have a library http://www.rgraph.net/

I found another library here http://www.liquidx.net/canvasgraphjs/

here is a good tutorial http://dev.opera.com/articles/view/html5-canvas-painting/

+2
source

Use an image and create an image map with GIMP . All events are clicked fully.

0
source

Take a look at jsUML2 , this might be what you are looking for.

0
source

You can try draw.io. This is a free online JavaScript-based drawing tool that uses SVG to draw shapes.

0
source

Source: https://habr.com/ru/post/908955/


All Articles