• 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 myConfig = {
    24. "type": "chord",
    25. "options": {
    26. "style": {
    27. "tooltip": {
    28. "border-width": 2,
    29. "border-color": "#900",
    30. "background-color": "#fc0"
    31. },
    32. "band": {
    33. "tooltip": {
    34. "text": "Band of item %text"
    35. }
    36. },
    37. "chord": {
    38. "tooltip": {
    39. "text-chord": "Chord between %text-source (%value-source) and %text-destination (%value-destination)",
    40. "text": "Self-chord of item %text with value %value"
    41. }
    42. }
    43. }
    44. },
    45. "series": [{
    46. "values": [6637, 5700, 4789, 2771],
    47. "text": "A"
    48. },
    49. {
    50. "values": [7737, 2691, 2202, 7006],
    51. "text": "B"
    52. },
    53. {
    54. "values": [8574, 9898, 4084, 1765],
    55. "text": "C"
    56. },
    57. {
    58. "values": [5309, 1602, 8395, 2908],
    59. "text": "D"
    60. }
    61. ]
    62. };
    63.  
    64. zingchart.render({
    65. id: 'myChart',
    66. data: myConfig,
    67. height: "100%",
    68. width: "100%"
    69. });
    70. </script>
    71. </body>
    72.  
    73. </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 myConfig = {
    2. "type": "chord",
    3. "options": {
    4. "style": {
    5. "tooltip": {
    6. "border-width": 2,
    7. "border-color": "#900",
    8. "background-color": "#fc0"
    9. },
    10. "band": {
    11. "tooltip": {
    12. "text": "Band of item %text"
    13. }
    14. },
    15. "chord": {
    16. "tooltip": {
    17. "text-chord": "Chord between %text-source (%value-source) and %text-destination (%value-destination)",
    18. "text": "Self-chord of item %text with value %value"
    19. }
    20. }
    21. }
    22. },
    23. "series": [{
    24. "values": [6637, 5700, 4789, 2771],
    25. "text": "A"
    26. },
    27. {
    28. "values": [7737, 2691, 2202, 7006],
    29. "text": "B"
    30. },
    31. {
    32. "values": [8574, 9898, 4084, 1765],
    33. "text": "C"
    34. },
    35. {
    36. "values": [5309, 1602, 8395, 2908],
    37. "text": "D"
    38. }
    39. ]
    40. };
    41.  
    42. zingchart.render({
    43. id: 'myChart',
    44. data: myConfig,
    45. height: "100%",
    46. width: "100%"
    47. });