• 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></style>
    10. </head>
    11.  
    12. <body>
    13. <div id='myChart'></div>
    14. <script>
    15. ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
    16. var myConfig = {
    17. "type": "pie",
    18. "title": {
    19. "text": "Legend Minimization"
    20. },
    21. "subtitle": {
    22. "text": "Minimize the legend. Collapsed by Default here",
    23. "font-weight": "normal"
    24. },
    25. "legend": {
    26. collapse: true,
    27. "minimize": true, //automatically adds header
    28. "icon": {
    29. "line-color": "red"
    30. },
    31. "header": {
    32. "background-color": "#ffe6e6",
    33. "border-left": "1px solid red",
    34. "border-right": "1px solid red",
    35. "border-top": "1px solid red",
    36. "border-bottom": "1px solid red"
    37. },
    38. "x": "75%",
    39. "y": "25%"
    40. },
    41. "plotarea": {
    42. "margin-right": "30%",
    43. "margin-top": "15%"
    44. },
    45. "plot": {
    46. "value-box": {
    47. "font-size": 11,
    48. "font-weight": "normal",
    49. "offset-r": "50%"
    50. }
    51. },
    52. "series": [{
    53. "values": [234]
    54. },
    55. {
    56. "values": [121]
    57. },
    58. {
    59. "values": [77]
    60. },
    61. {
    62. "values": [65]
    63. },
    64. {
    65. "values": [59]
    66. },
    67. {
    68. "values": [35]
    69. },
    70. {
    71. "values": [34]
    72. },
    73. {
    74. "values": [31]
    75. },
    76. {
    77. "values": [16]
    78. },
    79. {
    80. "values": [14]
    81. }
    82. ]
    83. };
    84.  
    85. zingchart.render({
    86. id: 'myChart',
    87. data: myConfig,
    88. height: 400,
    89. width: "100%"
    90. });
    91. </script>
    92. </body>
    93.  
    94. </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.  
    1. var myConfig = {
    2. "type": "pie",
    3. "title": {
    4. "text": "Legend Minimization"
    5. },
    6. "subtitle": {
    7. "text": "Minimize the legend. Collapsed by Default here",
    8. "font-weight": "normal"
    9. },
    10. "legend": {
    11. collapse: true,
    12. "minimize": true, //automatically adds header
    13. "icon": {
    14. "line-color": "red"
    15. },
    16. "header": {
    17. "background-color": "#ffe6e6",
    18. "border-left": "1px solid red",
    19. "border-right": "1px solid red",
    20. "border-top": "1px solid red",
    21. "border-bottom": "1px solid red"
    22. },
    23. "x": "75%",
    24. "y": "25%"
    25. },
    26. "plotarea": {
    27. "margin-right": "30%",
    28. "margin-top": "15%"
    29. },
    30. "plot": {
    31. "value-box": {
    32. "font-size": 11,
    33. "font-weight": "normal",
    34. "offset-r": "50%"
    35. }
    36. },
    37. "series": [{
    38. "values": [234]
    39. },
    40. {
    41. "values": [121]
    42. },
    43. {
    44. "values": [77]
    45. },
    46. {
    47. "values": [65]
    48. },
    49. {
    50. "values": [59]
    51. },
    52. {
    53. "values": [35]
    54. },
    55. {
    56. "values": [34]
    57. },
    58. {
    59. "values": [31]
    60. },
    61. {
    62. "values": [16]
    63. },
    64. {
    65. "values": [14]
    66. }
    67. ]
    68. };
    69.  
    70. zingchart.render({
    71. id: 'myChart',
    72. data: myConfig,
    73. height: 400,
    74. width: "100%"
    75. });