Table of Contents

ComboStrap Diagram - Flowchart

About

The flowchart component is a diagram component that permits to create a flowchart.

Example

<flowchart>
graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
</flowchart>
graph TD; A-->B; A-->C; B-->D; C-->D;

Syntax

The syntax is based on the mermaid flow chart definition

<flowchart>
   ... Mermaid Flowchart Diagram definition ...
</flowchart>

Mermaid offers a live editor that you can use to validate and develop your diagrams.

This component is based on the mermaid component.