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.

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.jsUsage
<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>