by using your tool i draw the DFD diagram but the entire flow is displaying in single digram

0 votes
asked May 10, 2017 in Wanted features by brahmaiah (200 points)
I tried following example for DFD, here the entire flow is displaying in Single line of PNG
i need the flow by flow means seperation in a single PNG.
 
@startuml
SourceTable1 -right-> TargetTable1
             -right-> Table3
Table4 -right-> Table2
 
BCRS -right-> AccountName
     -right-> AccountNumber
 
Branch-right->AccountName
@enduml

1 Answer

+1 vote
answered May 10, 2017 by Serge Wenger Work (15,620 points)
selected May 10, 2017 by brahmaiah
 
Best answer

Hello,

The positionning is not always OK, but you can try with hidden line:

@startuml
SourceTable1 -right-> TargetTable1
             -right-> Table3
Table4 -right-> Table2
 
BCRS -right-> AccountName
     -right-> AccountNumber
 
Branch-right->AccountName
 
 
SourceTable1 -down[hidden]-> Table4
Table4 -down[hidden]-> BCRS
BCRS -down[hidden]-> Branch
@enduml
commented May 10, 2017 by brahmaiah (200 points)
Thanks a lot sir....
...