• 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. let chartConfig = {
    24. type: 'chord',
    25. series: [{
    26. values: [6637, 5700, 4789, 2771],
    27. text: 'A',
    28. style: {
    29. chord: {
    30. borderColor: '#900',
    31. borderWidth: 4,
    32. tooltip: {
    33. text: 'Chord Tooltip Text',
    34. bottomState: {
    35. backgroundColor: 'red',
    36. offsetX: 10,
    37. offsetY: 10,
    38. }
    39. },
    40. }
    41. }
    42. },
    43. {
    44. values: [7737, 2691, 2202, 7006],
    45. text: 'B'
    46. },
    47. {
    48. values: [8574, 9898, 4084, 1765],
    49. text: 'C'
    50. },
    51. {
    52. values: [5309, 1602, 8395, 2908],
    53. text: 'D'
    54. }
    55. ]
    56. };
    57.  
    58. zingchart.render({
    59. id: 'myChart',
    60. data: chartConfig,
    61. height: '100%',
    62. width: '100%'
    63. });
    64. </script>
    65. </body>
    66.  
    67. </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. let chartConfig = {
    2. type: 'chord',
    3. series: [{
    4. values: [6637, 5700, 4789, 2771],
    5. text: 'A',
    6. style: {
    7. chord: {
    8. borderColor: '#900',
    9. borderWidth: 4,
    10. tooltip: {
    11. text: 'Chord Tooltip Text',
    12. bottomState: {
    13. backgroundColor: 'red',
    14. offsetX: 10,
    15. offsetY: 10,
    16. }
    17. },
    18. }
    19. }
    20. },
    21. {
    22. values: [7737, 2691, 2202, 7006],
    23. text: 'B'
    24. },
    25. {
    26. values: [8574, 9898, 4084, 1765],
    27. text: 'C'
    28. },
    29. {
    30. values: [5309, 1602, 8395, 2908],
    31. text: 'D'
    32. }
    33. ]
    34. };
    35.  
    36. zingchart.render({
    37. id: 'myChart',
    38. data: chartConfig,
    39. height: '100%',
    40. width: '100%'
    41. });