<!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> html, body, #myChart { height: 100%; width: 100%; } </style> </head> <body> <div id='myChart'></div> <script> ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"]; var myConfig = { "type": "bar3d", "fill-type": "radial", "scaleX": { "item": { "color": "#313133" }, "background-color": "none", "guide": { "visible": 0 } }, "tooltip": { "visible": 0 }, "scaleY": { "item": { "color": "#313133" }, "background-color": "none", "guide": { "visible": 0 } }, "series": [{ "values": [69, 68, 54, 48, 70, 74], "text": "Apple", "facets": { "front": { "background-color": "#3EA4F9 #0055BF" }, "right": { "background-color": "#3EA4F9 #0055BF" }, "left": { "background-color": "#3EA4F9 #0055BF" }, "top": { "background-color": "white" }, "bottom": { "background-color": "white" } } }, { "values": [51, 53, 47, 60, 48, 52], "text": "Microsoft", "facets": { "front": { "background-color": "#96ED89 #044D29" }, "right": { "background-color": "#96ED89 #044D29" }, "left": { "background-color": "#96ED89 #044D29" }, "top": { "background-color": "white" }, "bottom": { "background-color": "white" } } }, { "values": [42, 43, 30, 40, 31, 48], "text": "Oracle", "facets": { "front": { "background-color": "#FFBFB4 #BF1616" }, "right": { "background-color": "#FFBFB4 #BF1616" }, "left": { "background-color": "#FFBFB4 #BF1616" }, "top": { "background-color": "white" }, "bottom": { "background-color": "white" } } }, { "values": [25, 15, 26, 21, 24, 26], "text": "Dell", "facets": { "front": { "background-color": "#FFF5A5 #FFEC56" }, "right": { "background-color": "#FFF5A5 #FFEC56" }, "left": { "background-color": "#FFF5A5 #FFEC56" }, "top": { "background-color": "white" }, "bottom": { "background-color": "white" } } } ] }; zingchart.render({ id: 'myChart', data: myConfig, height: '100%', 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>
html, body, #myChart { height: 100%; width: 100%; }
var myConfig = { "type": "bar3d", "fill-type": "radial", "scaleX": { "item": { "color": "#313133" }, "background-color": "none", "guide": { "visible": 0 } }, "tooltip": { "visible": 0 }, "scaleY": { "item": { "color": "#313133" }, "background-color": "none", "guide": { "visible": 0 } }, "series": [{ "values": [69, 68, 54, 48, 70, 74], "text": "Apple", "facets": { "front": { "background-color": "#3EA4F9 #0055BF" }, "right": { "background-color": "#3EA4F9 #0055BF" }, "left": { "background-color": "#3EA4F9 #0055BF" }, "top": { "background-color": "white" }, "bottom": { "background-color": "white" } } }, { "values": [51, 53, 47, 60, 48, 52], "text": "Microsoft", "facets": { "front": { "background-color": "#96ED89 #044D29" }, "right": { "background-color": "#96ED89 #044D29" }, "left": { "background-color": "#96ED89 #044D29" }, "top": { "background-color": "white" }, "bottom": { "background-color": "white" } } }, { "values": [42, 43, 30, 40, 31, 48], "text": "Oracle", "facets": { "front": { "background-color": "#FFBFB4 #BF1616" }, "right": { "background-color": "#FFBFB4 #BF1616" }, "left": { "background-color": "#FFBFB4 #BF1616" }, "top": { "background-color": "white" }, "bottom": { "background-color": "white" } } }, { "values": [25, 15, 26, 21, 24, 26], "text": "Dell", "facets": { "front": { "background-color": "#FFF5A5 #FFEC56" }, "right": { "background-color": "#FFF5A5 #FFEC56" }, "left": { "background-color": "#FFF5A5 #FFEC56" }, "top": { "background-color": "white" }, "bottom": { "background-color": "white" } } } ] }; zingchart.render({ id: 'myChart', data: myConfig, height: '100%', width: '100%' });