• 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. height: 100%;
    13. width: 100%;
    14. margin: 0;
    15. padding: 0;
    16. }
    17.  
    18. #myChart {
    19. height: 100%;
    20. width: 100%;
    21. min-height: 150px;
    22. }
    23. </style>
    24. </head>
    25.  
    26. <body>
    27. <div id="myChart"></div>
    28. <script>
    29. ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
    30. var myConfig = {
    31. "graphset": [{
    32. "type": "line",
    33. "crosshair-x": {
    34. "exact": 1,
    35. "scale-label": {
    36. "rules": [{
    37. "rule": "%node-index < 1",
    38. "offset-x": 50
    39. }]
    40. }
    41. },
    42. "scale-x": {
    43. "step": "30minute",
    44. "transform": {
    45. "type": "date",
    46. "all": "%Y-%m-%d, %H:%i"
    47. },
    48. "item": {
    49.  
    50. "rules": [{
    51. "rule": "%i < 1",
    52. "offset-x": 50
    53. }]
    54. },
    55. "zooming": true
    56. },
    57. "scale-y": {
    58. "label": {
    59. "text": "Price ($/Mwh)"
    60. },
    61. "min-value": 0,
    62. "zooming": true
    63. },
    64. "series": [{
    65. "values": [1, 3, 2, 3, 2, 1]
    66. },
    67. {
    68. "values": [4, 2, 1, 5, 3, 2]
    69. }
    70. ]
    71. }]
    72. };
    73.  
    74. zingchart.render({
    75. id: 'myChart',
    76. data: myConfig,
    77. height: '100%',
    78. width: '100%'
    79. });
    80. </script>
    81. </body>
    82.  
    83. </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. 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. }
    1. var myConfig = {
    2. "graphset": [{
    3. "type": "line",
    4. "crosshair-x": {
    5. "exact": 1,
    6. "scale-label": {
    7. "rules": [{
    8. "rule": "%node-index < 1",
    9. "offset-x": 50
    10. }]
    11. }
    12. },
    13. "scale-x": {
    14. "step": "30minute",
    15. "transform": {
    16. "type": "date",
    17. "all": "%Y-%m-%d, %H:%i"
    18. },
    19. "item": {
    20.  
    21. "rules": [{
    22. "rule": "%i < 1",
    23. "offset-x": 50
    24. }]
    25. },
    26. "zooming": true
    27. },
    28. "scale-y": {
    29. "label": {
    30. "text": "Price ($/Mwh)"
    31. },
    32. "min-value": 0,
    33. "zooming": true
    34. },
    35. "series": [{
    36. "values": [1, 3, 2, 3, 2, 1]
    37. },
    38. {
    39. "values": [4, 2, 1, 5, 3, 2]
    40. }
    41. ]
    42. }]
    43. };
    44.  
    45. zingchart.render({
    46. id: 'myChart',
    47. data: myConfig,
    48. height: '100%',
    49. width: '100%'
    50. });