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.

Graphviz diagram types

Graphviz Diagrams for Jira supports all Graphviz diagram types. This page lists various graph types with some example DOT codes and respective outputs. 

Diagram typeDescriptionDOT syntaxOutput
GraphA unidirectional graph - Consider an example to present the connection between a few Atlassian products.
graph {
    Jira -- "Bitbucket (Builds)";
    Jira -- "Stash (Store)";
    Jira -- "Confluence (Design)";
    "Confluence (Design)" -- "Bitbucket (Builds)";
    "Confluence (Design)" -- "Stash (Store)";
    Jira -- Slack;
}

DigraphA directed graph - Consider an example to capture simple Jira workflow.
digraph G {
	Open -> Triage;
	Open -> "In progress";
	Triage -> Open;
	"In progress" -> "In review";
	"In review" -> Resolved;
	Resolved -> Close
	Open -> Close [style=dashed]
}

Flowchart

A shape joined by lines - Consider an example to address customer requests on a support portal.

Use digraph code as mentioned in the example here to create a flowchart diagram.

digraph {
    
    "customer request"[shape="box", style=rounded];
    close[shape="box", style=rounded];
    valid[shape="diamond", style=""];
    process[shape="parallelogram", style=""]
    "create support ticket"[shape="parallelogram", style=""]
 
    "customer request" -> "create support ticket";
    "create support ticket" -> valid;
    valid -> process[label="yes"];
    valid -> close[label="no"];
    process -> close;
}


Find answers from the community.

Ask a question to the community.

Log a request with our support team.

Confluence®, Jira®, Atlassian Bamboo®, Bitbucket®, Fisheye®, and Atlassian Crucible® are registered trademarks of Atlassian®
Copyright © 2005 - 2024 Appfire | All rights reserved. Appfireâ„¢, the 'Apps for makersâ„¢' slogan and Bob Swift Atlassian Appsâ„¢ are all trademarks of Appfire Technologies, LLC.