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
FlowChart JS
Create flowcharts in seconds with BALKAN FlowChart 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.jsUsage
<script src="https://balkan.app/js/flowchart.js"></script>
<style>
html, body, #chart{
width: 100%;
height: 100%;
margin: 0;
}
</style>
<div id="chart"></div>
<script>
let chart = new FlowChart('#chart');
chart.onChanged(function(){
var data = chart.json();
//post data to server
});
chart.load({
nodes: [
{ id: 1, templateId: 'process', x: 400, y: 150, fill: "#FFCA28" },
{ id: 2, templateId: 'decision', x: 400, y: 350, fill: "#F57C00" },
{ id: 3, templateId: 'process', x: 700, y: 350 }
],
links: [
{ from: 1, to: 2 },
{ from: 2, to: 3 }
]
}
);
</script>