• 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. height: 100%;
    13. width: 100%;
    14. margin: 0;
    15. padding: 0;
    16. }
    17.  
    18. #myChart {
    19. height: 100%;
    20. width: 100%;
    21. min-height: 150px;
    22. }
    23.  
    24. .zc-ref {
    25. display: none;
    26. }
    27. </style>
    28. </head>
    29.  
    30. <body>
    31. <div id="myChart"><a class="zc-ref" href="https://www.zingchart.com">Powered by ZingChart</a></div>
    32. <script>
    33. ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
    34. let chartConfig = {
    35. type: 'pie',
    36. nav: {
    37. threshold: '20%',
    38. others: {
    39. text: 'Others',
    40. backgroundColor: '#999 #333'
    41. },
    42. back: {
    43. backgroundColor: '#47a',
    44. border: '3px solid #47a',
    45. borderRadius: 9,
    46. color: '#fff',
    47. fontWeight: 'bold',
    48. fontSize: 12,
    49. padding: 10,
    50. shadow: true,
    51. shadowAlpha: 0.5,
    52.  
    53. tooltip: {
    54. text: 'Back to main chart',
    55. mediaRules: [{
    56. maxWidth: 400,
    57. backgroundColor: 'red'
    58. }],
    59. },
    60.  
    61. mediaRules: [{
    62. maxWidth: 400,
    63. backgroundColor: 'red'
    64. }],
    65. },
    66. },
    67. series: [{
    68. values: [69],
    69. text: 'Apple'
    70. },
    71. {
    72. values: [51],
    73. text: 'Microsoft'
    74. },
    75. {
    76. values: [42],
    77. text: 'Oracle'
    78. },
    79. {
    80. values: [20],
    81. text: 'Dell'
    82. },
    83. {
    84. values: [19],
    85. text: 'Amazon'
    86. },
    87. ]
    88. }
    89.  
    90. zingchart.render({
    91. id: 'myChart',
    92. data: chartConfig,
    93. height: '100%',
    94. width: '100%'
    95. });
    96. </script>
    97. </body>
    98.  
    99. </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"><a class="zc-ref" href="https://www.zingchart.com">Powered by ZingChart</a></div>
    13. </body>
    14.  
    15. </html>
    1. html,
    2. body {
    3. height: 100%;
    4. width: 100%;
    5. margin: 0;
    6. padding: 0;
    7. }
    8.  
    9. #myChart {
    10. height: 100%;
    11. width: 100%;
    12. min-height: 150px;
    13. }
    14.  
    15. .zc-ref {
    16. display: none;
    17. }
    1. let chartConfig = {
    2. type: 'pie',
    3. nav: {
    4. threshold: '20%',
    5. others: {
    6. text: 'Others',
    7. backgroundColor: '#999 #333'
    8. },
    9. back: {
    10. backgroundColor: '#47a',
    11. border: '3px solid #47a',
    12. borderRadius: 9,
    13. color: '#fff',
    14. fontWeight: 'bold',
    15. fontSize: 12,
    16. padding: 10,
    17. shadow: true,
    18. shadowAlpha: 0.5,
    19.  
    20. tooltip: {
    21. text: 'Back to main chart',
    22. mediaRules: [{
    23. maxWidth: 400,
    24. backgroundColor: 'red'
    25. }],
    26. },
    27.  
    28. mediaRules: [{
    29. maxWidth: 400,
    30. backgroundColor: 'red'
    31. }],
    32. },
    33. },
    34. series: [{
    35. values: [69],
    36. text: 'Apple'
    37. },
    38. {
    39. values: [51],
    40. text: 'Microsoft'
    41. },
    42. {
    43. values: [42],
    44. text: 'Oracle'
    45. },
    46. {
    47. values: [20],
    48. text: 'Dell'
    49. },
    50. {
    51. values: [19],
    52. text: 'Amazon'
    53. },
    54. ]
    55. }
    56.  
    57. zingchart.render({
    58. id: 'myChart',
    59. data: chartConfig,
    60. height: '100%',
    61. width: '100%'
    62. });