• 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. let chartConfig = {
    17. type: 'line',
    18. plot: {
    19. midPoint: false // Sets whether or not a node is wrapped equally before and after its position.
    20. },
    21. series: [{
    22. values: [28, 19, 30, 35, 46, 36],
    23. },
    24. {
    25. values: [11, 7, 14, 11, 24, 22],
    26. },
    27. {
    28. values: [18, 25, 35, 16, 31, 18],
    29. }
    30. ]
    31. }
    32.  
    33. zingchart.render({
    34. id: 'myChart',
    35. data: chartConfig,
    36. height: 400,
    37. width: '100%'
    38. });
    39. </script>
    40. </body>
    41.  
    42. </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. let chartConfig = {
    2. type: 'line',
    3. plot: {
    4. midPoint: false // Sets whether or not a node is wrapped equally before and after its position.
    5. },
    6. series: [{
    7. values: [28, 19, 30, 35, 46, 36],
    8. },
    9. {
    10. values: [11, 7, 14, 11, 24, 22],
    11. },
    12. {
    13. values: [18, 25, 35, 16, 31, 18],
    14. }
    15. ]
    16. }
    17.  
    18. zingchart.render({
    19. id: 'myChart',
    20. data: chartConfig,
    21. height: 400,
    22. width: '100%'
    23. });