• 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. type: 'area',
    37. title: {
    38. text: 'Area Chart',
    39. fontSize: 20,
    40. },
    41. guide: {
    42. lineColor: 'red',
    43.  
    44. mediaRules: [{
    45. maxWidth: 400,
    46. lineColor: 'blue',
    47. }],
    48. },
    49. legend: {},
    50. crosshairX: {},
    51. scaleX: {},
    52. scaleY: {},
    53. plot: {
    54. valueBox: {}
    55. },
    56. series: [{
    57. values: [35, 42, 67, 89, 25, 34, 67, 85],
    58. backgroundColor: '#212121'
    59. },
    60. {
    61. values: [25, 59, 30, 16, 51, 99, 31, 39],
    62. backgroundColor: '#616161'
    63. }
    64. ]
    65. };
    66.  
    67. zingchart.render({
    68. id: 'myChart',
    69. data: chartConfig,
    70. height: 400,
    71. width: '100%'
    72. });
    73. </script>
    74. </body>
    75.  
    76. </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. type: 'area',
    3. title: {
    4. text: 'Area Chart',
    5. fontSize: 20,
    6. },
    7. guide: {
    8. lineColor: 'red',
    9.  
    10. mediaRules: [{
    11. maxWidth: 400,
    12. lineColor: 'blue',
    13. }],
    14. },
    15. legend: {},
    16. crosshairX: {},
    17. scaleX: {},
    18. scaleY: {},
    19. plot: {
    20. valueBox: {}
    21. },
    22. series: [{
    23. values: [35, 42, 67, 89, 25, 34, 67, 85],
    24. backgroundColor: '#212121'
    25. },
    26. {
    27. values: [25, 59, 30, 16, 51, 99, 31, 39],
    28. backgroundColor: '#616161'
    29. }
    30. ]
    31. };
    32.  
    33. zingchart.render({
    34. id: 'myChart',
    35. data: chartConfig,
    36. height: 400,
    37. width: '100%'
    38. });