JSPM

  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q68434F
  • License SEE LICENSE IN https://balkan.app

Ultimate Flow Chart JavaScript library, Interactive Diagrams

Package Exports

  • @balkangraph/flowchart.js
  • @balkangraph/flowchart.js/flowchart.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@balkangraph/flowchart.js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Flow Chart JS

Create flow charts in seconds with BALKAN FlowChartJS.

Flow Chart JS

Demos      Docs      Download      Support

Features

  • Supports both local data and remote data (JSON)

Installation

Option 1 - standalone build

Option 2 - NPM

npm i @balkangraph/flowchart.js

Usage

    <script src="https://balkan.app/js/flowchart.js"></script>
    <div id="chart"></div>
    <script> 
//JavaScript
var chart = new FlowChart(document.getElementById("chart"));

chart.load({
        nodes: [
            { id: 1, templateId: 'startEnd', x: 0, y: 0, text: 'Start'},
            { id: 2, templateId: 'decision', x: 0, y: 200, text: "Question?" },
            { id: 3, templateId: 'inOut', x: 300, y: 200, text: 'Step'},

        ],
        links: [
            { from: 1, to: 2, toPort: 'top' },
            { from: 2, to: 3 },
        ],
        labels: [
            { from: 2, to: 3, position: 50, text: 'Yes' },
        ]
    }
);

chart.onChanged(function(){
    var data = chart.json();
    //post data to server to keep changes
});


chart.nodes.get(2).selected = true;


    </script>

1 click to talk 2 us

FlowChart