Difference between revisions of "Flow Charts"

From Wiki
Jump to navigation Jump to search
m (Link to flowchart creator)
(Added some details)
Line 1: Line 1:
 
< [[MetaFun]], [[Graphics]]
 
< [[MetaFun]], [[Graphics]]
  
see [http://www.pragma-ade.com/general/manuals/mchart.pdf Charts uncovered] by Pragma
+
Context provides a charts module to create flow charts. For example
  
also see [http://www.im.ps.pl/context/?en Flowchart creater] to create flowchart code using javascript.
+
<context source="yes">
 +
\usemodule[chart]
 +
\setupFLOWcharts[height=3\lineheight]
 +
 
 +
\startFLOWchart[example]
 +
\startFLOWcell
 +
  \name {flow}
 +
  \location {1,1}
 +
  \text {Flow}
 +
  \connection [rl] {chart}
 +
\stopFLOWcell
 +
\startFLOWcell
 +
  \name {chart}
 +
  \location{2,1}
 +
  \text {Charts}
 +
\stopFLOWcell
 +
\stopFLOWchart
 +
\FLOWchart[example]
 +
 
 +
</context>
 +
 
 +
The details are in the [http://www.pragma-ade.com/general/manuals/mchart.pdf Charts uncovered] manual by Pragma.
 +
 
 +
There is also [http://www.im.ps.pl/context/?en Flowchart creater] to create flowchart code using javascript.
  
 
[[Category:Graphics]]
 
[[Category:Graphics]]
 
[[Category:Metapost]]
 
[[Category:Metapost]]

Revision as of 07:01, 21 July 2007

< MetaFun, Graphics

Context provides a charts module to create flow charts. For example

\usemodule[chart]
\setupFLOWcharts[height=3\lineheight]

\startFLOWchart[example]
\startFLOWcell 
  \name {flow}
  \location {1,1}
  \text {Flow}
  \connection [rl] {chart}
\stopFLOWcell
\startFLOWcell
  \name {chart}
  \location{2,1}
  \text {Charts}
\stopFLOWcell
\stopFLOWchart
\FLOWchart[example]

The details are in the Charts uncovered manual by Pragma.

There is also Flowchart creater to create flowchart code using javascript.