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
7
votes
2 answers

tool to generate flow chart diagram from textual notation

I am looking for a console-based tool that can process a simple text file containing the textual notation of a flowchart diagram and generate a PNG (or other format) file. There might also be a LaTeX package for that but, if possible, I would…
Marcus Junius Brutus
  • 26,087
  • 41
  • 189
  • 331
7
votes
2 answers

Making an editable flowchart in Qt/C++

I'm working on making a editable flowchart and I'm having a lot of issues conceptually with Qt. I've tried many different ways of implementing classes ranging from QTreeWidget, QTableWidget, and using just a bunch of easy QPushButtons. Ideally I'd…
mhag
  • 85
  • 2
  • 6
7
votes
15 answers

free, cheap or open source UML and Visio-like tool

We're looking for free/cheap or open source UML tools. What tools have you used ? It's OK if there are 2 tools, one each for Flow charts and UML. If a UML tool or Flow Chart tool is cheap(we're a NON-PROFIT), and no open source is good enough, we're…
anjanb
  • 12,999
  • 18
  • 77
  • 106
7
votes
2 answers

Free Code-to-Flowchart/UML tool for C# code

I'm looking for a free tool similar to Visustin. Are there any like that that exist?
RCIX
  • 38,647
  • 50
  • 150
  • 207
7
votes
4 answers

Flowchart Control for WPF

I need to design a control that can create/manipulate a really simple Algorithm flow chart. It will only have conditional (if, if,else) and assignment blocks. Some key features that I need to implement are: Users can freely add/manipulate/remove…
TtT23
  • 6,876
  • 34
  • 103
  • 174
6
votes
3 answers

Django Flowchart Model

Is anyone aware of a Django app for designing and storing flowcharts in a database? After searching for variations of "Django flowcharts", I've only found flowcharts of Django's internal design, not anything about authoring or storing flowcharts in…
Cerin
  • 60,957
  • 96
  • 316
  • 522
6
votes
1 answer

How can we generate flow chart diagram in IntelliJ IDEA from Java code which is editable?

I am searching for a tool (preferably works offline) but couldn't find any.how can generate flow chart. i.e flow chart for a method or for the main method of the class. I am aware of Sequence diagrams and its plugin for IntelliJ. but I am looking…
Akhil Surapuram
  • 654
  • 1
  • 8
  • 22
6
votes
1 answer

R : Draw timeline flowchart

I've a dataframe containing information on tasks executed from differents teams. I would like to plot a similar plot as shown below using R. Blue box = team . Task completed = green box. To do tasks = gray box. I was thinking on using ggplot2…
Nicolas Rosewick
  • 1,938
  • 4
  • 24
  • 42
6
votes
1 answer

Looking for ReactJS library to create flows/diagrams

I'm looking for a react component or a javascript library for creating flows/diagrams. I need to customize and have various types of nodes.
Mike
  • 71
  • 1
  • 1
  • 3
6
votes
2 answers

How to draw a flowchart in Enterprise Architect?

Does anyone know any tutorials on how to draw a flowchart in EA? I'm having problems with using connectors. How do I connect it without another connector if possible?
user13364
  • 61
  • 1
  • 1
  • 3
6
votes
5 answers

How to represent functions in flowchart?

I define some function in my Ansi C Program (simple program). I don't known how to represent a function in flowchart. Anybody can help me?
asedra_le
  • 3,079
  • 8
  • 38
  • 56
6
votes
2 answers

What is the name of such diagrams?

I would like to generate diagrams similar to this, but I don't have a clue what to look for.
nowox
  • 25,978
  • 39
  • 143
  • 293
6
votes
1 answer

Is there a tool to generate flowchart from code?

I just joined a project made with Angular JS which has a lot of nested promises. Some tasks seem to not happen in the right order, which causes some object to be overidden at some point. I need to check how/when the promises are called, which are…
Antoine
  • 81
  • 5
6
votes
1 answer

Representing parallel operations in flowcharts

I need to do a flowchart of a hydraulic system featuring a temperature regulation module. However, temperature regulation is only activated during one part of the cycle. During this part, the system continues to perform other operations. I want to…
user3419556
6
votes
8 answers

flow chart diagrams : tools / best practices

Are there any free online tools out there to make visio kind of diagrams. I would like to practice my flowchart skills. Are there any good sites or books or articles out there that discuss best practices for flowchart diagrams.
Anon