• 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. "placement": "top-in",
    22. "font-color": "white"
    23. }
    24. },
    25. "scale-x": {
    26. "labels": ["Q1", "Q2", "Q3", "Q4"]
    27. },
    28. "scale-y": {
    29. "values": "0:100:25"
    30. },
    31. "series": [{
    32. "values": [30, 59, 33, 81]
    33. },
    34. {
    35. "values": [34, 64, 40, 85]
    36. }
    37. ]
    38. };
    39.  
    40. zingchart.render({
    41. id: 'myChart',
    42. data: myConfig,
    43. height: 400,
    44. width: "100%"
    45. });
    46. </script>
    47. </body>
    48.  
    49. </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. "placement": "top-in",
    7. "font-color": "white"
    8. }
    9. },
    10. "scale-x": {
    11. "labels": ["Q1", "Q2", "Q3", "Q4"]
    12. },
    13. "scale-y": {
    14. "values": "0:100:25"
    15. },
    16. "series": [{
    17. "values": [30, 59, 33, 81]
    18. },
    19. {
    20. "values": [34, 64, 40, 85]
    21. }
    22. ]
    23. };
    24.  
    25. zingchart.render({
    26. id: 'myChart',
    27. data: myConfig,
    28. height: 400,
    29. width: "100%"
    30. });