<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ZingSoft Demo</title> <script nonce="undefined" src="https://cdn.zingchart.com/zingchart.min.js"></script> <style></style> </head> <body> <div id='myChart'></div> <script> ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"]; var myConfig = { type: 'bar', title: { text: 'Interactive Legend' }, legend: { toggleAction: 'remove', minimize: true, draggable: true, dragHandler: 'icon', icon: { lineColor: '#A14BC9' }, alpha: 0.7, borderWidth: 1, borderColor: '#EF8535', borderRadius: '3px' }, plot: { animation: { onLegendToggle: true, //to enable toggling animation effect: 11, //the animation effect method: 0, //how the animation behaves sequence: 1, //the order of the animation speed: 1000 //the animation speed, in milliseconds }, barsSpaceLeft: '15%', barsSpaceRight: '15%' }, scaleX: { labels: ["2010", "2011", "2012", "2013", "2014", "2015", "2016"] }, scaleY: { values: '0:100:20' }, series: [{ values: [35, 42, 67, 89, 25, 34, 67] }, { values: [31, 29, 59, 91, 26, 42, 79] }, { values: [36, 33, 77, 99, 34, 32, 84] } ] }; zingchart.render({ id: 'myChart', data: myConfig, height: 400, width: '100%' }); </script> </body> </html>
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ZingSoft Demo</title> <script src="https://cdn.zingchart.com/zingchart.min.js"></script> </head> <body> <div id='myChart'></div> </body> </html>
var myConfig = { type: 'bar', title: { text: 'Interactive Legend' }, legend: { toggleAction: 'remove', minimize: true, draggable: true, dragHandler: 'icon', icon: { lineColor: '#A14BC9' }, alpha: 0.7, borderWidth: 1, borderColor: '#EF8535', borderRadius: '3px' }, plot: { animation: { onLegendToggle: true, //to enable toggling animation effect: 11, //the animation effect method: 0, //how the animation behaves sequence: 1, //the order of the animation speed: 1000 //the animation speed, in milliseconds }, barsSpaceLeft: '15%', barsSpaceRight: '15%' }, scaleX: { labels: ["2010", "2011", "2012", "2013", "2014", "2015", "2016"] }, scaleY: { values: '0:100:20' }, series: [{ values: [35, 42, 67, 89, 25, 34, 67] }, { values: [31, 29, 59, 91, 26, 42, 79] }, { values: [36, 33, 77, 99, 34, 32, 84] } ] }; zingchart.render({ id: 'myChart', data: myConfig, height: 400, width: '100%' });