• 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. #myChart {
    13. height: 100%;
    14. width: 100%;
    15. }
    16. </style>
    17. </head>
    18.  
    19. <body>
    20. <div id='myChart'></div>
    21. <script>
    22. ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
    23. let chartConfig = {
    24. type: 'area',
    25. plot: {
    26. connectNulls: true,
    27. },
    28. series: [{
    29. /* Plot indices 2 and 5 are unavailable */
    30. values: [20, 40, null, 50, 15, null, 33, 34]
    31. }]
    32. };
    33.  
    34. zingchart.render({
    35. id: 'myChart',
    36. data: chartConfig,
    37. height: '100%',
    38. width: '100%'
    39. });
    40. </script>
    41. </body>
    42.  
    43. </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. #myChart {
    4. height: 100%;
    5. width: 100%;
    6. }
    1. let chartConfig = {
    2. type: 'area',
    3. plot: {
    4. connectNulls: true,
    5. },
    6. series: [{
    7. /* Plot indices 2 and 5 are unavailable */
    8. values: [20, 40, null, 50, 15, null, 33, 34]
    9. }]
    10. };
    11.  
    12. zingchart.render({
    13. id: 'myChart',
    14. data: chartConfig,
    15. height: '100%',
    16. width: '100%'
    17. });