• 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. var myConfig = {
    17. "type": "bar",
    18. "plot": {
    19. "value-box": {
    20. "text": "$%vK",
    21. "type": "max"
    22. }
    23. },
    24. "scale-x": {
    25. "labels": ["Q1", "Q2", "Q3", "Q4"]
    26. },
    27. "scale-y": {
    28. "values": "0:100:25"
    29. },
    30. "series": [{
    31. "values": [30, 59, 33, 81]
    32. },
    33. {
    34. "values": [34, 64, 40, 85]
    35. }
    36. ]
    37. };
    38.  
    39. zingchart.render({
    40. id: 'myChart',
    41. data: myConfig,
    42. height: 400,
    43. width: "100%"
    44. });
    45. </script>
    46. </body>
    47.  
    48. </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. var myConfig = {
    2. "type": "bar",
    3. "plot": {
    4. "value-box": {
    5. "text": "$%vK",
    6. "type": "max"
    7. }
    8. },
    9. "scale-x": {
    10. "labels": ["Q1", "Q2", "Q3", "Q4"]
    11. },
    12. "scale-y": {
    13. "values": "0:100:25"
    14. },
    15. "series": [{
    16. "values": [30, 59, 33, 81]
    17. },
    18. {
    19. "values": [34, 64, 40, 85]
    20. }
    21. ]
    22. };
    23.  
    24. zingchart.render({
    25. id: 'myChart',
    26. data: myConfig,
    27. height: 400,
    28. width: "100%"
    29. });