• 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>
    10. html,
    11. body,
    12. #myChart {
    13. height: 100%;
    14. width: 100%;
    15. }
    16. </style>
    17. </head>
    18.  
    19. <body>
    20. <div id='myChart'></div>
    21. <script>
    22. ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
    23. var myConfig1 = {
    24. "type": "bubble-pie",
    25. "plot": {
    26. "values": [
    27. [3, 3, 34],
    28. [5, 12, 101],
    29. [9, 7, 59],
    30. [11, 5, 15],
    31. [14, 14, 30]
    32. ]
    33. },
    34. "series": [{
    35. "data-v": [15, 37, 7, 3, 14]
    36. },
    37. {
    38. "data-v": [13, 34, 21, 7, 8]
    39. },
    40. {
    41. "data-v": [6, 30, 31, 5, 8]
    42. },
    43. {
    44. "data-v": [5, 29, null, 3, 13]
    45. },
    46. {
    47. "data-v": [3, 25, 19, 3, null]
    48. }
    49. ]
    50. };
    51.  
    52. zingchart.render({
    53. id: 'myChart',
    54. data: myConfig1,
    55. height: "100%",
    56. width: "100%"
    57. });
    58. </script>
    59. </body>
    60.  
    61. </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. html,
    2. body,
    3. #myChart {
    4. height: 100%;
    5. width: 100%;
    6. }
    1. var myConfig1 = {
    2. "type": "bubble-pie",
    3. "plot": {
    4. "values": [
    5. [3, 3, 34],
    6. [5, 12, 101],
    7. [9, 7, 59],
    8. [11, 5, 15],
    9. [14, 14, 30]
    10. ]
    11. },
    12. "series": [{
    13. "data-v": [15, 37, 7, 3, 14]
    14. },
    15. {
    16. "data-v": [13, 34, 21, 7, 8]
    17. },
    18. {
    19. "data-v": [6, 30, 31, 5, 8]
    20. },
    21. {
    22. "data-v": [5, 29, null, 3, 13]
    23. },
    24. {
    25. "data-v": [3, 25, 19, 3, null]
    26. }
    27. ]
    28. };
    29.  
    30. zingchart.render({
    31. id: 'myChart',
    32. data: myConfig1,
    33. height: "100%",
    34. width: "100%"
    35. });