• 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. var myConfig = {
    35. type: 'area',
    36. stacked: true,
    37. plotarea: {
    38. margin: 'dynamic'
    39. },
    40. tooltip: {
    41. text: "%v<br>%total",
    42. thousandsSeparator: ','
    43. },
    44. series: [{
    45. values: [3500000, 4200000, 6700000, 8900000, 2000005, 3000004]
    46. },
    47. {
    48. values: [3500000, 4200000, 6700000, 8900000, 2000005, 3000004]
    49. },
    50. {
    51. values: [3500000, 4200000, 6700000, 8900000, 2000005, 3000004]
    52. }
    53. ]
    54. };
    55.  
    56. zingchart.render({
    57. id: 'myChart',
    58. data: myConfig,
    59. height: '100%',
    60. width: '100%'
    61. });
    62. </script>
    63. </body>
    64.  
    65. </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. var myConfig = {
    2. type: 'area',
    3. stacked: true,
    4. plotarea: {
    5. margin: 'dynamic'
    6. },
    7. tooltip: {
    8. text: "%v<br>%total",
    9. thousandsSeparator: ','
    10. },
    11. series: [{
    12. values: [3500000, 4200000, 6700000, 8900000, 2000005, 3000004]
    13. },
    14. {
    15. values: [3500000, 4200000, 6700000, 8900000, 2000005, 3000004]
    16. },
    17. {
    18. values: [3500000, 4200000, 6700000, 8900000, 2000005, 3000004]
    19. }
    20. ]
    21. };
    22.  
    23. zingchart.render({
    24. id: 'myChart',
    25. data: myConfig,
    26. height: '100%',
    27. width: '100%'
    28. });