• 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 myConfig2 = {
    17. "type": "hscatter",
    18. "series": [{
    19. "values": [
    20. [1, 9],
    21. [2, 15],
    22. [3, 21],
    23. [4, 30],
    24. [5, 40],
    25. [6, 59],
    26. [7, 60],
    27. [8, 75],
    28. [9, 81],
    29. [10, 99]
    30. ]
    31. }]
    32. };
    33.  
    34. zingchart.render({
    35. id: 'myChart',
    36. data: myConfig2,
    37. height: 400,
    38. width: "100%"
    39. });
    40. </script>
    41. </body>
    42.  
    43. </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 myConfig2 = {
    2. "type": "hscatter",
    3. "series": [{
    4. "values": [
    5. [1, 9],
    6. [2, 15],
    7. [3, 21],
    8. [4, 30],
    9. [5, 40],
    10. [6, 59],
    11. [7, 60],
    12. [8, 75],
    13. [9, 81],
    14. [10, 99]
    15. ]
    16. }]
    17. };
    18.  
    19. zingchart.render({
    20. id: 'myChart',
    21. data: myConfig2,
    22. height: 400,
    23. width: "100%"
    24. });