• 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. var myConfig = {
    24. "type": "range",
    25. "utc": true,
    26. "scale-x": {
    27. "label": {
    28. "text": "Above is an example of a time-series scale",
    29. },
    30. "min-value": 1420070400000,
    31. "step": "day",
    32. "transform": {
    33. "type": "date",
    34. "all": "%m.%d.%y"
    35. }
    36. },
    37. "series": [{
    38. "values": [
    39. [15, 30],
    40. [20, 40],
    41. [16, 35],
    42. [21, 30],
    43. [25, 45],
    44. [18, 27],
    45. [23, 35],
    46. [29, 39],
    47. [27, 30],
    48. [19, 34],
    49. [23, 40]
    50. ]
    51. }]
    52. };
    53.  
    54. zingchart.render({
    55. id: 'myChart',
    56. data: myConfig,
    57. height: "100%",
    58. width: "100%"
    59. });
    60. </script>
    61. </body>
    62.  
    63. </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. var myConfig = {
    2. "type": "range",
    3. "utc": true,
    4. "scale-x": {
    5. "label": {
    6. "text": "Above is an example of a time-series scale",
    7. },
    8. "min-value": 1420070400000,
    9. "step": "day",
    10. "transform": {
    11. "type": "date",
    12. "all": "%m.%d.%y"
    13. }
    14. },
    15. "series": [{
    16. "values": [
    17. [15, 30],
    18. [20, 40],
    19. [16, 35],
    20. [21, 30],
    21. [25, 45],
    22. [18, 27],
    23. [23, 35],
    24. [29, 39],
    25. [27, 30],
    26. [19, 34],
    27. [23, 40]
    28. ]
    29. }]
    30. };
    31.  
    32. zingchart.render({
    33. id: 'myChart',
    34. data: myConfig,
    35. height: "100%",
    36. width: "100%"
    37. });