• Edit
  • Download
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingSoft Demo</title>
    7. <link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
    8.  
    9. <script nonce="undefined" src="https://cdn.zingchart.com/zingchart.min.js"></script>
    10. <style>
    11. html,
    12. body {
    13. height: 100%;
    14. width: 100%;
    15. margin: 0;
    16. padding: 0;
    17. }
    18.  
    19. #myChart {
    20. height: 100%;
    21. width: 100%;
    22. min-height: 150px;
    23. }
    24.  
    25. .zc-ref {
    26. display: none;
    27. }
    28. </style>
    29. </head>
    30.  
    31. <body>
    32. <div id="myChart"><a class="zc-ref" href="https://www.zingchart.com">Powered by ZingChart</a></div>
    33. <script>
    34. ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
    35. let chartConfig = {
    36. globals: {
    37. marker: {
    38. backgroundColor: '#1A237E',
    39. type: 'star5',
    40. size: 7
    41. }
    42. },
    43. graphset: [{
    44. type: 'area',
    45. title: {
    46. text: 'Area Chart',
    47. fontSize: 20,
    48. },
    49. legend: {},
    50. crosshairX: {},
    51. scaleX: {},
    52. scaleY: {
    53. guide: {
    54. visible: false
    55. }
    56. },
    57. plot: {
    58. valueBox: {}
    59. },
    60. series: [{
    61. values: [35, 42, 67, 89, 25, 34, 67, 85],
    62. backgroundColor: '#212121'
    63. },
    64. {
    65. values: [25, 59, 30, 16, 51, 99, 31, 39],
    66. backgroundColor: '#616161'
    67. }
    68. ]
    69. }]
    70. };
    71.  
    72. zingchart.render({
    73. id: 'myChart',
    74. data: chartConfig,
    75. height: 400,
    76. width: '100%'
    77. });
    78. </script>
    79. </body>
    80.  
    81. </html>
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingSoft Demo</title>
    7. <link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
    8.  
    9. <script src="https://cdn.zingchart.com/zingchart.min.js"></script>
    10. </head>
    11.  
    12. <body>
    13. <div id="myChart"><a class="zc-ref" href="https://www.zingchart.com">Powered by ZingChart</a></div>
    14. </body>
    15.  
    16. </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. globals: {
    3. marker: {
    4. backgroundColor: '#1A237E',
    5. type: 'star5',
    6. size: 7
    7. }
    8. },
    9. graphset: [{
    10. type: 'area',
    11. title: {
    12. text: 'Area Chart',
    13. fontSize: 20,
    14. },
    15. legend: {},
    16. crosshairX: {},
    17. scaleX: {},
    18. scaleY: {
    19. guide: {
    20. visible: false
    21. }
    22. },
    23. plot: {
    24. valueBox: {}
    25. },
    26. series: [{
    27. values: [35, 42, 67, 89, 25, 34, 67, 85],
    28. backgroundColor: '#212121'
    29. },
    30. {
    31. values: [25, 59, 30, 16, 51, 99, 31, 39],
    32. backgroundColor: '#616161'
    33. }
    34. ]
    35. }]
    36. };
    37.  
    38. zingchart.render({
    39. id: 'myChart',
    40. data: chartConfig,
    41. height: 400,
    42. width: '100%'
    43. });