Questions tagged [flow-diagram]

18 questions
3
votes
2 answers

How to generate flow diagram from ASP.Net and C#.Net code?

I have started working on a new project and the code is huge. Documentation for that project is out of date. But i need to understand the code. One way is that i can put break point and debug the code to understand it but since code is huge and it…
Balraj Singh
  • 3,381
  • 6
  • 47
  • 82
3
votes
2 answers

Is the Information Flow diagram part of the UML v2.5.1 taxonomy?

According to multiple sources, the Information Flow diagram is not part of the UML v2.5.1 taxonomy. See examples here: https://www.uml-diagrams.org/uml-25-diagrams.html https://stackoverflow.com/a/44715082/4216654 According to the UML v2.5.1 (and…
cluxter
  • 324
  • 1
  • 12
3
votes
1 answer

Flow diagram from netlogo code

From NetLogo code is it possible to get a visual flow diagram of all procedures? Observer procedures .. agent procedures .. and links between them.
pabolo1974
  • 41
  • 3
3
votes
2 answers

What is the name of this algorithm flow notation?

I found this in my programing notes and could not find references to the algorithm flow diagram on the right. What is the name of this notation ?
Anna B
  • 5,997
  • 5
  • 40
  • 52
2
votes
1 answer

C++ Builder Flow Diagram Component?

We want to draw large control flow diagrams in a C++ builder XE application being developed. These diagrams will be generated programaticaly and displayed to the user in an interactive fashion (the user can scroll around the large flow diagram,…
QAZ
  • 4,870
  • 6
  • 36
  • 50
2
votes
0 answers

Is there any other free flow diagram maker package than Graphite for Flutter?

I want to add a flow diagram board to my Flutter application that users can add/remove blocks by drag and drop, edit block shapes or add onPressed() functionality to them, connecting the blocks together and also run something by taping on them. I…
user11874694
2
votes
1 answer

How to properly draw a model flow diagram in R

I want to draw a flow diagram for a compartmental model in R or Rstudio. After searching the the internet and this website I was able to partially achieve the following: http://apprentiss.com/model_diagram/untitled2.png My final goal is to achieve…
Lunik
  • 103
  • 1
  • 8
1
vote
1 answer

DiagrammeR: Force horizontal arrows to be straight rather than diagonal

I am attempting to recreate this example as a test for a flow diagram for a project I am working on: https://dannyjnwong.github.io/STROBE-CONSORT-Diagrams-in-R/ That page shows the code should result in a diagram that looks like this:…
M. Y.
  • 35
  • 4
1
vote
1 answer

Is there a library which can generate animated SVG diagrams like this example?

I'm constantly doing some flow diagrams using rather "primitive" tools like draw.io / lucidchart / etc. I accidentally landed on https://thingsboard.io/docs/iot-gateway/what-is-iot-gateway/ while researching a completely different topic and…
tftd
  • 16,203
  • 11
  • 62
  • 106
0
votes
1 answer

how was this diagram created?

Help me improve my continuous deployment workflow how was this diagram created? any free / open source tool i can use to create this very same diagram?
Jas
  • 14,493
  • 27
  • 97
  • 148
0
votes
1 answer

Do I need to connect this two tasks in my BPMN diagram?

I have a BPMN diagram where I need to exchange messages from one pool to another. Basically my send task "Enviar convites" sends a message to another lane in my pool and to a lane in another pool. This is the flow of the other pool and this other…
P.Brito
  • 81
  • 6
0
votes
1 answer

Can I have an send message task before a Gateway in BPMN?

I have a BPMN diagram and I have a send message task connect to a gateway. Is this allowed? If not how can I solve it? The behavior I want to achieve is inform about the beginning of a process ( send message task) to two different lanes ( the two…
0
votes
1 answer

How to create workflow diagram with Angular/Javascript

i need to build a workflow diagram with the given json object json object has : label, from, to , nodeType for each node { "name": "S1", "id": 492, "type": "start", "label": "Start", "level": "0", "isActive": true, …
0
votes
1 answer

How to show tracking in a user flow diagram?

I have made a user flow diagram but just wanted to ask you guys about clarification on displaying "tracking". Let's say these are the requirements User enters a web page to browse products User selects product The selected product is tracked by…
ThomasGXS
  • 73
  • 7
0
votes
1 answer

Process Flow Diagram in NetworkX

My goal is to create a process flow diagram in Networkx using some data file. The data file I am using is a CSV file and I want the program to read that file and create a process diagram. This is what I am getting when I have it read my file: I…
1
2