Graphviz Diagrams for Jira has been retired and archived on the Atlassian Marketplace on December 26, 2023. Current customers and evaluators were informed of this change on September 27, 2023.

As per our earlier communication, the maintenance of the app has been stopped as of October 15, 2023. Please contact our support team if you have any opinions.

Skip to end of banner
Go to start of banner

Flowchart

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

This page lists some example scenarios where you can use a flowchart diagram.

ExampleDescriptionDOT syntaxOutput
Fun with EmailThe Email ID is split into a flow chart.
digraph {
    size="5,5" 
	rankdir=LR;
  	"testuser" -> "@" -> "appfire" -> "." -> "com" [color=orange]
}


Sample validation flowGenerates a flowchart for validation flow.
digraph {
    label="How to make sure 'input' is valid"
 
    start[shape="box", style=rounded];
    end[shape="box", style=rounded];
    if_valid[shape="diamond", style=""];
    message[shape="parallelogram", style=""]
    input[shape="parallelogram", style=""]
 
    start -> input;
    input -> if_valid;
    if_valid -> message[label="no"];
    if_valid -> end[label="yes"];
    message -> input;

}


Polygonal shapesGenerates polygonal shapes and a directed graph.
digraph {
   a -> b -> c;
   b -> d;
   a [shape=polygon,sides=5,peripheries=3,color=orange,style=filled];
   c [shape=polygon,sides=4,skew=.6,label="4-sided polygon"]
   d [shape=invtriangle];
   e [shape=polygon,sides=4,distortion=.9];


}


Directed graphGenerates a directed graph.
digraph {
	a -> b;
	a -> c -> d;
	c -> e; 
}


  • No labels