• 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": "mixed",
    25. "title": {
    26. "text": "Mixed Chart with Logarithmic Scale"
    27. },
    28. "plot": {
    29. "tooltip": {
    30. "text": "%t: %v sales",
    31. "thousands-separator": ","
    32. }
    33. },
    34. "scale-x": {
    35. "labels": ["Aug", "Sep", "Oct", "Nov", "Dec"]
    36. },
    37. "scale-y": {
    38. "progression": "log",
    39. "log-base": 10,
    40. "thousands-separator": ",",
    41. "short": true
    42. },
    43. "series": [{
    44. "type": "line",
    45. "values": [194, 1290, 7900, 150000, 1850000],
    46. "aspect": "spline",
    47. "text": "Total"
    48. },
    49. {
    50. "type": "bar",
    51. "values": [60, 340, 1500, 45000, 550000],
    52. "text": "Store A"
    53. },
    54. {
    55. "type": "bar",
    56. "values": [65, 450, 2900, 49000, 600000],
    57. "text": "Store B"
    58. },
    59. {
    60. "type": "bar",
    61. "values": [69, 500, 3500, 56000, 700000],
    62. "text": "Store C"
    63. }
    64. ]
    65. };
    66.  
    67. zingchart.render({
    68. id: 'myChart',
    69. data: myConfig,
    70. height: "100%",
    71. width: "100%"
    72. });
    73. </script>
    74. </body>
    75.  
    76. </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": "mixed",
    3. "title": {
    4. "text": "Mixed Chart with Logarithmic Scale"
    5. },
    6. "plot": {
    7. "tooltip": {
    8. "text": "%t: %v sales",
    9. "thousands-separator": ","
    10. }
    11. },
    12. "scale-x": {
    13. "labels": ["Aug", "Sep", "Oct", "Nov", "Dec"]
    14. },
    15. "scale-y": {
    16. "progression": "log",
    17. "log-base": 10,
    18. "thousands-separator": ",",
    19. "short": true
    20. },
    21. "series": [{
    22. "type": "line",
    23. "values": [194, 1290, 7900, 150000, 1850000],
    24. "aspect": "spline",
    25. "text": "Total"
    26. },
    27. {
    28. "type": "bar",
    29. "values": [60, 340, 1500, 45000, 550000],
    30. "text": "Store A"
    31. },
    32. {
    33. "type": "bar",
    34. "values": [65, 450, 2900, 49000, 600000],
    35. "text": "Store B"
    36. },
    37. {
    38. "type": "bar",
    39. "values": [69, 500, 3500, 56000, 700000],
    40. "text": "Store C"
    41. }
    42. ]
    43. };
    44.  
    45. zingchart.render({
    46. id: 'myChart',
    47. data: myConfig,
    48. height: "100%",
    49. width: "100%"
    50. });