3

I am looking for the best approach to draw some flows in HTML. This is for a user facing website where they select some options and then they see some numbers/entities connected by arrows, pulled from some data table. It doesn't need to be too fancy but flexible (# entities changes).

What is the best tool for this? JS, HTML5, PHP, CSS?

Dirk N
  • 717
  • 3
  • 9
  • 23
  • Duplicate of http://stackoverflow.com/questions/3944723/javascript-flowchart-flow-diagram-lib or this http://stackoverflow.com/questions/363592/javascript-library-for-hierarchical-flowchart? – David Feb 07 '13 at 09:56

3 Answers3

1

I'd also have a look at D3 tools (data driven documents) - a javascript library which allows all manner of graphs and charts - flow and otherwise.

Andrew Weir
  • 1,020
  • 2
  • 13
  • 27
0

Here are most commonly used online tools to draw flow diagram in html

http://www.smashingapps.com/2011/08/26/45-free-online-tools-to-create-charts-diagrams-and-flowcharts.html

zapbuild
  • 182
  • 4
0

Don't use HTML, use embed SVG in HTML5 context.

For instance Drawing flowcharts with CSS and SVG.

Édouard Lopez
  • 40,270
  • 28
  • 126
  • 178