<!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 { height: 100%; width: 100%; margin: 0; padding: 0; } #myChart { height: 100%; width: 100%; min-height: 150px; } .zc-ref { display: none; } </style> </head> <body> <div id="myChart"><a class="zc-ref" href="https://www.zingchart.com">Powered by ZingChart</a></div> <script> ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"]; var myConfig = { title: { text: 'Vectorplot Data' }, "globals": { "fontFamily": "Lucida Sans Unicode" }, "type": "vectorplot", "plotarea": { "margin": "dynamic" }, "options": { "arrow": { "min-length": 6, "max-length": 12, "style": { "size": 3, "background-color": "#333" } }, "data": [ [5, 5, 190, 18], [5, 10, 185, 27], [5, 15, 180, 36], [5, 20, 175, 45], [5, 25, 170, 54], [5, 30, 165, 63], [5, 35, 160, 72], [5, 40, 155, 81], [5, 45, 150, 90], [5, 50, 145, 99], [5, 55, 140, 108], [5, 60, 135, 117], [5, 65, 130, 126], [5, 70, 125, 135], [5, 75, 120, 144], [5, 80, 115, 153], [5, 85, 110, 162], [5, 90, 105, 171], [5, 95, 100, 180] ] } }; zingchart.render({ id: 'myChart', data: myConfig, height: '500', width: '500' }); </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"><a class="zc-ref" href="https://www.zingchart.com">Powered by ZingChart</a></div> </body> </html>
html, body { height: 100%; width: 100%; margin: 0; padding: 0; } #myChart { height: 100%; width: 100%; min-height: 150px; } .zc-ref { display: none; }
var myConfig = { title: { text: 'Vectorplot Data' }, "globals": { "fontFamily": "Lucida Sans Unicode" }, "type": "vectorplot", "plotarea": { "margin": "dynamic" }, "options": { "arrow": { "min-length": 6, "max-length": 12, "style": { "size": 3, "background-color": "#333" } }, "data": [ [5, 5, 190, 18], [5, 10, 185, 27], [5, 15, 180, 36], [5, 20, 175, 45], [5, 25, 170, 54], [5, 30, 165, 63], [5, 35, 160, 72], [5, 40, 155, 81], [5, 45, 150, 90], [5, 50, 145, 99], [5, 55, 140, 108], [5, 60, 135, 117], [5, 65, 130, 126], [5, 70, 125, 135], [5, 75, 120, 144], [5, 80, 115, 153], [5, 85, 110, 162], [5, 90, 105, 171], [5, 95, 100, 180] ] } }; zingchart.render({ id: 'myChart', data: myConfig, height: '500', width: '500' });