FusionCharts - DragNode Chart in JavaScript
Created using FusionCharts Suite XT - www.fusioncharts.com
HTML
<script src="http://static.fusioncharts.com/code/latest/fusioncharts.powercharts.js"></script>
<script src="https://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js"></script>
<script src="https://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<div id="chart-container">FusionCharts will render here</div>
JavaScript
FusionCharts.ready(function() {
var test = new FusionCharts({
type: 'column2d',
renderAt: 'chart-container',
width: '600',
height: '400',
dataFormat: 'xml',
dataSource:"<chart theme='fint' baseFontSize='14' valueFontSize='14' legendItemFontSize='12' pieRadius='57' caption='Browser Stats' xAxisName='Browser' yAxisName='Visitors' numberPrefix='' formatNumberScale='0'><set label='Chrome' value='2'/></chart>"
});
test.render();
});