• 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. </style>
    24. </head>
    25.  
    26. <body>
    27. <div id="myChart"></div>
    28. <script>
    29. ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
    30. var myConfig = {
    31. type: "pie",
    32. plot: {
    33. valueBox: {
    34. text: "Total \n %pie-total-value \n MW",
    35. decimals: 3,
    36. placement: "center",
    37. fontColor: "black",
    38. fontSize: 16,
    39. fontFamily: "Roboto Condensed",
    40. fontWeight: "normal"
    41. }
    42. },
    43. series: [{
    44. values: [35.20]
    45. },
    46. {
    47. values: [25.3031234]
    48. },
    49. {
    50. values: [15.33]
    51. }
    52. ]
    53. };
    54.  
    55. zingchart.render({
    56. id: 'myChart',
    57. data: myConfig,
    58. height: '100%',
    59. width: '100%'
    60. });
    61. </script>
    62. </body>
    63.  
    64. </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. 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. }
    1. var myConfig = {
    2. type: "pie",
    3. plot: {
    4. valueBox: {
    5. text: "Total \n %pie-total-value \n MW",
    6. decimals: 3,
    7. placement: "center",
    8. fontColor: "black",
    9. fontSize: 16,
    10. fontFamily: "Roboto Condensed",
    11. fontWeight: "normal"
    12. }
    13. },
    14. series: [{
    15. values: [35.20]
    16. },
    17. {
    18. values: [25.3031234]
    19. },
    20. {
    21. values: [15.33]
    22. }
    23. ]
    24. };
    25.  
    26. zingchart.render({
    27. id: 'myChart',
    28. data: myConfig,
    29. height: '100%',
    30. width: '100%'
    31. });