• 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. type: 'line',
    32. utc: true,
    33. timezone: .75,
    34. plot: {
    35. tooltip: {
    36. text: '%kv'
    37. }
    38. },
    39. scaleX: {
    40. zooming: true,
    41. minValue: 1478001600000,
    42. step: 3600000,
    43. transform: { //makes unix timestamps readable
    44. type: "date",
    45. all: "%D, %d %M %Y<br>%h:%i %A"
    46. },
    47. },
    48. series: [{
    49. values: [35, 42, 67, 89, 25, 34, 67, 85]
    50. }]
    51. };
    52.  
    53. zingchart.bind('myChart', 'zoom', function(e) {
    54. console.log(e)
    55. });
    56.  
    57. zingchart.render({
    58. id: 'myChart',
    59. data: myConfig,
    60. height: '100%',
    61. width: '100%'
    62. });
    63. </script>
    64. </body>
    65.  
    66. </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. type: 'line',
    3. utc: true,
    4. timezone: .75,
    5. plot: {
    6. tooltip: {
    7. text: '%kv'
    8. }
    9. },
    10. scaleX: {
    11. zooming: true,
    12. minValue: 1478001600000,
    13. step: 3600000,
    14. transform: { //makes unix timestamps readable
    15. type: "date",
    16. all: "%D, %d %M %Y<br>%h:%i %A"
    17. },
    18. },
    19. series: [{
    20. values: [35, 42, 67, 89, 25, 34, 67, 85]
    21. }]
    22. };
    23.  
    24. zingchart.bind('myChart', 'zoom', function(e) {
    25. console.log(e)
    26. });
    27.  
    28. zingchart.render({
    29. id: 'myChart',
    30. data: myConfig,
    31. height: '100%',
    32. width: '100%'
    33. });