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
17
votes
8 answers

Online Flowchart Diagram Tool (run from private wiki)

Is there some flowchart diagram tool that would (or could be made to) integrate with a self-hosted wiki? Requirements: basic functionality (e.g., drawing some boxes and some arrows) would strongly prefer it to be visual (i.e., not written out in…
red.october
  • 563
  • 1
  • 5
  • 12
16
votes
14 answers

What is the difference between a data flow diagram and a flow chart?

I want to know why we use Data Flow Diagrams instead of flow charts.
Rahul Vyas
  • 28,260
  • 49
  • 182
  • 256
15
votes
4 answers

Is there a way to automatically generate the data flow diagrams and flowcharts?

I am recently working on some long and obscure codes written by some other smart guys. I'm thinking of generating the Data Flow Diagrams and the Flowcharts to facilitate my work. Is there any kinds of software that can do this job…
Zatuch
  • 173
  • 1
  • 1
  • 6
14
votes
3 answers

Best javascript library to create and interactive flow chart

I would like to create an interactive 'problem solving' type flow chart that is made up out div elements. I would like to do something very similar to what the new york times have done in this…
Dale Woods
  • 784
  • 1
  • 13
  • 31
13
votes
4 answers

Flowchart else if

I'm making a flowchart a for an algorithm, and came into some problem for an else if statement. For an if-statement such as this one if (something) {} else if (something) {} else {} How would the else if statement look like in a flowchart diagram?
starcorn
  • 8,261
  • 23
  • 83
  • 124
13
votes
2 answers

Flow chart generator from source files

I'm searching for a tool that let me generate a flow chart for a given project. It is difficult understand others code by looking at code, a flow chart can be very helpful. My Project is in VS 2010 Professional Edition.
Sharique
  • 4,199
  • 6
  • 36
  • 54
13
votes
5 answers
12
votes
0 answers

Mermaid JS wrap links from far right to far left

Working with Mermaid js to make flowcharts and can't seem to find a way to wrap links around to a new "line" so to speak. Docs and Googling haven't gotten me anywhere. Does anyone know if it is possible to create a link to replace the red line?
Dave_750
  • 1,225
  • 1
  • 13
  • 28
12
votes
4 answers

Flowcharting functional programming languages

Flowcharting. This ancient old practice that's been in use for over 1000 years now, being forced upon us poor students, without any usefulness (or so do I think). It might work well with imperative, sequentially running languages, but what about my…
LukeN
  • 5,590
  • 1
  • 25
  • 33
11
votes
2 answers

Visualizing R code with a flow chart

Are there any tools that can visualize R code? I have some very complex R code split between several scripts that I need to understand. Part of the difficulty of this is that there are so many nested functions and variables that it's proving…
Stonecraft
  • 860
  • 1
  • 12
  • 30
11
votes
2 answers

What is the difference between a workflow and a flowchart if any?

I'm doing a study on how to visualize a process of an application. Now I found the term workflow and workflow management but it's a little confusing. When I searched further the term flowchart also showed up. My question is now, is there any…
Gerard
  • 111
  • 1
  • 1
  • 3
11
votes
5 answers

tool to show diagramatic representation of c code

Is there any tool to show diagrammatic rep of flow of program if we input a C file? Thanks.
JPro
  • 6,292
  • 13
  • 57
  • 83
11
votes
1 answer

Open source HTML5 JS library for flowchats

I am planning to write an application that can allow me to draw flowchart like diagrams that can span over multiple dynamic rectangles (nodes) connected to N level of depth. Obvious thought is to use a flowchat library to achieve the purpose. I…
Manish Devraj
  • 701
  • 3
  • 11
  • 27
10
votes
2 answers

How to align text in Mermaid flowchart node?

I would like to align text in a Mermaid flowchart node so the Thinkpad and iPad will line up. I tried to insert a \t before them but they just got rendered as text. flowchart TD A[Christmas] -->|Get money| B(Go shopping) B --> C{Let me…
Ray Cheng
  • 12,230
  • 14
  • 74
  • 137
10
votes
1 answer

Mermaid change position of nodes / options Anyway to fix nodes' position

I'm trying to draw a flow chart in html. The flow must be configured as below. I've tried it in Mermaid like this
graph LR …
Juhyun Park
  • 141
  • 1
  • 12
1
2
3
38 39