Questions tagged [flowchart]

A flowchart is a type of diagram that represents an algorithm or process, showing the steps as boxes of various kinds, and their order by connecting these with arrows. This diagrammatic representation can give a step-by-step solution to a given problem.

A flowchart is a type of diagram that represents an algorithm or process, showing the steps as boxes of various kinds, and their order by connecting these with arrows. This diagrammatic representation can give a step-by-step solution to a given problem.

Process operations are represented in these boxes, and arrows connecting them represent flow of control. Data flows are not typically represented in a flowchart, in contrast with data flow diagrams; rather, they are implied by the sequencing of operations. Flowcharts are used in analyzing, designing, documenting or managing a process or program in various fields

For more info check Wikipedia.

585 questions
9
votes
2 answers

Simple, but dynamically generated flow chart or process chart view for iOS

Perhaps "flow chart" or "process chart" isn't even the correct terminology for what I'm looking for, but it's the best analog I can come up with. Basically, I'm trying to find a library or class that allows for the dynamic creation (in code) of…
Greg Combs
  • 4,252
  • 3
  • 33
  • 47
9
votes
3 answers

R Markdown: How do I make text float around figures?

I made a flowchart with R which I included in my R Markdown file. How it looks like right now: The code: ```{r flowchart-data, echo = FALSE, message = FALSE, fig.cap = "Ablauf der Datenverarbeitung", fig.align = "right", fig.width = 7, fig.height…
Hurlikus
  • 399
  • 3
  • 13
9
votes
1 answer

How can I create a loop in my Graphviz flowchart?

I am trying to create a flowchart with nodes in set positions. I am using invisible nodes to try and force the direction of edges. My diagram is below. Its not quite right as I am wanting the lines coming out from node d , and around to the edge…
user2957945
  • 2,353
  • 2
  • 21
  • 40
9
votes
3 answers

Automatically generate flowcharts out of C++ code

I need to automatically construct flowcharts out of C++ code, ideally one flowchart per source file. Is there any tool (preferably C++/Python and either open-sourced or highly configurable - so I may change the look) that I can use to create…
Konstantin
  • 2,937
  • 10
  • 41
  • 58
9
votes
2 answers

PHP Application Flow Graph (or function call graph)

Happens that I've ended up working on a big PHP program and I need a program (or easy to install script) which draws a flow control/call graph of a PHP application (ie; must work over multiple PHP files). Already saw stuff like Graphviz, not sure…
Christian
  • 27,509
  • 17
  • 111
  • 155
9
votes
3 answers

What exactly is the difference between a theoretical petri net and a BPMN workflow?

There's theoretical petri nets: http://en.wikipedia.org/wiki/Petri_net And then there's workflows expressed as BPMN 2.0. What exactly is the difference? The reason I ask is that we want to do a simplification of business processes modelled in BPMN…
9
votes
2 answers

Language to create flowcharts

This seems like something which must have been answered before, but I can't find anything appropriate in the question archives. Basically, I'm looking for a little Domain Specific Language to create flowcharts. I'm terrible at graphic design and…
robintw
  • 27,571
  • 51
  • 138
  • 205
9
votes
2 answers

Javascript Canvas Flowcharting Project?

I am looking for a Javascript project which makes use of canvas to allow the creation of diagrams/flowcharts in the browser. Are there any active projects like that alive?
Spot
  • 7,962
  • 9
  • 46
  • 55
9
votes
1 answer

Is there any (free) alternative to Visustin, I need to create flowcharts from existing JavaScript code

Basically, I need to convert existing JavaScript code to flowcharts, I've tried using Code Visual to Flowchart but it doesnt produce the flow charts how I would like them to (just shows links to the different functions... Whereas Visustin actually…
jakal121
  • 91
  • 1
  • 1
  • 2
8
votes
2 answers

How to make the specified nodes horizontally aligned in Mermaid?

This is my flowchart: graph TB aaa ---> bbb ---> ddd & ccc ddd -.-> fff ccc --->|eee| fff fff ---> hhh & ggg & kkk hhh --->|iii| mmm ggg & kkk -.-> mmm But actually I want the node ccc and node ddd to be aligned…
yode
  • 483
  • 7
  • 16
8
votes
1 answer

How to represent a recursive function with a Flow Chart?

I need to represent a recursive function on a flow chart. My problem is that I don't know how to indicate that the function may call itself over multiple elements at a time (think for example to a function which scans graphs). Someone has any…
Lorenzo
  • 447
  • 1
  • 3
  • 21
8
votes
1 answer

Angular library for flowchart builder or workflow editor

I am currently looking for an open-source library for flowchart builder or workflow editor for frontend webapp in angular. I have looked at jsplumb and jointjs. But the angular wrapper for both these libraries are licensed. I have also checked…
Nithin Kumar Biliya
  • 2,763
  • 3
  • 34
  • 54
8
votes
4 answers

Create flow diagram programmatically

I want to visualize components and connections of a HVAC system with .NET/C#. The diagrams will just include a few different components and their connections. They do not have to comply to any formal standard and should look alike the diagrams…
Julian Lettner
  • 3,309
  • 7
  • 32
  • 49
8
votes
3 answers

What's the name for this type of flowchart?

Take a look at this; it's very obvious how it works and what its purpose is: (source: json.org) What's this type of chart called? Can I make this kind of chart in Visio? What software do you recommend for making this kind of chart?
Nathan Ridley
  • 33,766
  • 35
  • 123
  • 197
7
votes
1 answer

C++ code to Flowchart & Psudocode

I am looking for a tool can convert C++ code to Flow chart & Psudocode, can I find one ?
Aan
  • 12,247
  • 36
  • 89
  • 150
1 2
3
38 39