• 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: 'gauge',
    18. scaleR: {
    19. guide: {
    20. alpha: 1,
    21. backgroundColor: '#ffe6e6 #ff9999',
    22. lineColor: 'red',
    23. lineStyle: 'solid',
    24. lineWidth: 2,
    25. visible: true
    26. },
    27. values: '0:90:10'
    28. },
    29. series: [{
    30. values: [35]
    31. }]
    32. };
    33.  
    34. zingchart.render({
    35. id: 'myChart',
    36. data: myConfig,
    37. height: 400,
    38. width: "100%"
    39. });
    40. </script>
    41. </body>
    42.  
    43. </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: 'gauge',
    3. scaleR: {
    4. guide: {
    5. alpha: 1,
    6. backgroundColor: '#ffe6e6 #ff9999',
    7. lineColor: 'red',
    8. lineStyle: 'solid',
    9. lineWidth: 2,
    10. visible: true
    11. },
    12. values: '0:90:10'
    13. },
    14. series: [{
    15. values: [35]
    16. }]
    17. };
    18.  
    19. zingchart.render({
    20. id: 'myChart',
    21. data: myConfig,
    22. height: 400,
    23. width: "100%"
    24. });