I'm putting together a flowchart on the web and I need a JavaScript to run the flowchart. Does anyone have any ideas where I can find a FREE Flowchart JavaScript? I would need something like this: link
I'm putting together a flowchart on the web and I need a JavaScript to run the flowchart. Does anyone have any ideas where I can find a FREE Flowchart JavaScript? I would need something like this: link
If you just want an alternative to creating flowcharts, Google has the Chart library and there is the option Organization Chart .
google.charts.load('current', {
packages: ["orgchart"]
});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Name');
data.addColumn('string', 'Manager');
data.addColumn('string', 'ToolTip');
// For each orgchart box, provide the name, manager, and tooltip to show.
data.addRows([
[{
v: 'Mike',
f: 'Mike<div style="color:red; font-style:italic">President</div>'
},
'', 'The President'
],
[{
v: 'Jim',
f: 'Jim<div style="color:red; font-style:italic">Vice President</div>'
},
'Mike', 'VP'
],
['Alice', 'Mike', ''],
['Bob', 'Jim', 'Bob Sponge'],
['Carol', 'Bob', '']
]);
// Create the chart.
var chart = new google.visualization.OrgChart(document.getElementById('chart_div'));
// Draw the chart, setting the allowHtml option to true for the tooltips.
chart.draw(data, {
allowHtml: true
});
}
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script><divid="chart_div"></div>