<!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"]; let chartConfig = { gui: { contextMenu: { button: { visible: true } } }, graphset: [{ type: 'bar', title: { text: 'Context Menu Button' }, subtitle: { text: 'Click the hamburger icon.', fontWeight: 'normal' }, plot: { barsSpaceLeft: '15%', barsSpaceRight: '15%', borderRadius: '3px' }, scaleX: { labels: ["2010", "2011", "2012", "2013", "2014", "2015", "2016"] }, scaleY: { values: '0:100:20', guide: { lineStyle: 'dotted' } }, legend: { borderWidth: 1, borderRadius: '3px', marker: { borderRadius: '3px' } }, series: [{ values: [35, 42, 67, 89, 25, 34, 67], text: 'Alpha', backgroundColor: '#666699' }, { values: [31, 29, 59, 91, 26, 42, 79], text: 'Beta', backgroundColor: '#9494b8' }, { values: [36, 33, 77, 99, 34, 32, 84], text: 'Gamma', backgroundColor: '#c2c2d6' } ] }] }; zingchart.render({ id: 'myChart', data: chartConfig, 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>
let chartConfig = { gui: { contextMenu: { button: { visible: true } } }, graphset: [{ type: 'bar', title: { text: 'Context Menu Button' }, subtitle: { text: 'Click the hamburger icon.', fontWeight: 'normal' }, plot: { barsSpaceLeft: '15%', barsSpaceRight: '15%', borderRadius: '3px' }, scaleX: { labels: ["2010", "2011", "2012", "2013", "2014", "2015", "2016"] }, scaleY: { values: '0:100:20', guide: { lineStyle: 'dotted' } }, legend: { borderWidth: 1, borderRadius: '3px', marker: { borderRadius: '3px' } }, series: [{ values: [35, 42, 67, 89, 25, 34, 67], text: 'Alpha', backgroundColor: '#666699' }, { values: [31, 29, 59, 91, 26, 42, 79], text: 'Beta', backgroundColor: '#9494b8' }, { values: [36, 33, 77, 99, 34, 32, 84], text: 'Gamma', backgroundColor: '#c2c2d6' } ] }] }; zingchart.render({ id: 'myChart', data: chartConfig, height: 400, width: '100%' });