• Edit
  • Download
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingSoft Demo</title>
    7.  
    8. <script nonce="undefined" src="https://cdn.zingchart.com/zingchart.min.js"></script>
    9. <style></style>
    10. </head>
    11.  
    12. <body>
    13. <div id='myChart'></div>
    14. <script>
    15. ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
    16. var myConfig = {
    17. "type": "area",
    18. "series": [{
    19. "values": [
    20. 35, 42, 67, 89, 25, 34, 67, 85, 30, 33,
    21. 34, 100, 25, 15, 28, 55, 59, 13, 14, 15,
    22. 20, 21, 56, 45, 34, 23, 12, 88, 99, 70,
    23. 65, 87, 56, 35, 45, 78, 67, 87, 67, 89,
    24. 57, 85, 36, 75, 76, 97, 87, 88, 56, 78, 36
    25. ]
    26. }]
    27. };
    28.  
    29. zingchart.render({
    30. id: 'myChart',
    31. data: myConfig,
    32. height: 400,
    33. width: 1000
    34. });
    35. </script>
    36. </body>
    37.  
    38. </html>
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingSoft Demo</title>
    7.  
    8. <script src="https://cdn.zingchart.com/zingchart.min.js"></script>
    9. </head>
    10.  
    11. <body>
    12. <div id='myChart'></div>
    13. </body>
    14.  
    15. </html>
    1.  
    1. var myConfig = {
    2. "type": "area",
    3. "series": [{
    4. "values": [
    5. 35, 42, 67, 89, 25, 34, 67, 85, 30, 33,
    6. 34, 100, 25, 15, 28, 55, 59, 13, 14, 15,
    7. 20, 21, 56, 45, 34, 23, 12, 88, 99, 70,
    8. 65, 87, 56, 35, 45, 78, 67, 87, 67, 89,
    9. 57, 85, 36, 75, 76, 97, 87, 88, 56, 78, 36
    10. ]
    11. }]
    12. };
    13.  
    14. zingchart.render({
    15. id: 'myChart',
    16. data: myConfig,
    17. height: 400,
    18. width: 1000
    19. });