• 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: 'navpie',
    36. options: {
    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. topState: {
    54. backgroundColor: 'red',
    55. offsetX: 10,
    56. offsetY: 10
    57. },
    58. },
    59. },
    60. series: [{
    61. values: [69],
    62. text: 'Apple'
    63. },
    64. {
    65. values: [51],
    66. text: 'Microsoft'
    67. },
    68. {
    69. values: [42],
    70. text: 'Oracle'
    71. },
    72. {
    73. values: [20],
    74. text: 'Dell'
    75. },
    76. {
    77. values: [19],
    78. text: 'Amazon'
    79. },
    80. ]
    81. }
    82.  
    83. zingchart.render({
    84. id: 'myChart',
    85. data: chartConfig,
    86. height: '100%',
    87. width: '100%'
    88. });
    89. </script>
    90. </body>
    91.  
    92. </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: 'navpie',
    3. options: {
    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. topState: {
    21. backgroundColor: 'red',
    22. offsetX: 10,
    23. offsetY: 10
    24. },
    25. },
    26. },
    27. series: [{
    28. values: [69],
    29. text: 'Apple'
    30. },
    31. {
    32. values: [51],
    33. text: 'Microsoft'
    34. },
    35. {
    36. values: [42],
    37. text: 'Oracle'
    38. },
    39. {
    40. values: [20],
    41. text: 'Dell'
    42. },
    43. {
    44. values: [19],
    45. text: 'Amazon'
    46. },
    47. ]
    48. }
    49.  
    50. zingchart.render({
    51. id: 'myChart',
    52. data: chartConfig,
    53. height: '100%',
    54. width: '100%'
    55. });