• 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: 'pie',
    25. legend: {
    26. highlightPlot: true
    27. },
    28. plot: {
    29. highlightState: {
    30. backgroundColor: '#ccccff #ff9999',
    31. borderWidth: 2,
    32. borderColor: '#9999ff',
    33. lineStyle: 'dashdot',
    34. mediaRules: [{
    35. maxWidth: 400,
    36. backgroundColor: 'red',
    37. }],
    38. }
    39. },
    40. series: [{
    41. values: [30]
    42. }, {
    43. values: [34]
    44. }, {
    45. values: [15]
    46. }, {
    47. values: [14]
    48. }, {
    49. values: [5]
    50. }]
    51. };
    52.  
    53. zingchart.render({
    54. id: 'myChart',
    55. data: chartConfig,
    56. height: '100%',
    57. width: '100%'
    58. });
    59. </script>
    60. </body>
    61.  
    62. </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: 'pie',
    3. legend: {
    4. highlightPlot: true
    5. },
    6. plot: {
    7. highlightState: {
    8. backgroundColor: '#ccccff #ff9999',
    9. borderWidth: 2,
    10. borderColor: '#9999ff',
    11. lineStyle: 'dashdot',
    12. mediaRules: [{
    13. maxWidth: 400,
    14. backgroundColor: 'red',
    15. }],
    16. }
    17. },
    18. series: [{
    19. values: [30]
    20. }, {
    21. values: [34]
    22. }, {
    23. values: [15]
    24. }, {
    25. values: [14]
    26. }, {
    27. values: [5]
    28. }]
    29. };
    30.  
    31. zingchart.render({
    32. id: 'myChart',
    33. data: chartConfig,
    34. height: '100%',
    35. width: '100%'
    36. });