• 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. let chartConfig = {
    17. type: 'bullet',
    18. plot: {
    19. borderRadius: 3,
    20. goal: {
    21. borderWidth: 1,
    22. height: 10,
    23. topState: {
    24. backgroundColor: 'red',
    25. offsetX: 10,
    26. offsetY: 10,
    27. }
    28. }
    29. },
    30. series: [{
    31. values: [35, 42, 67, 89, 25, 34, 67, 85],
    32. goals: [27, 35, 69, 95, 10, 21, 69, 89],
    33. backgroundColor: '#F44336',
    34.  
    35. goal: {
    36. backgroundColor: '#FFE082',
    37. borderColor: '#F44336'
    38. }
    39. },
    40. {
    41. values: [25, 61, 36, 47, 27, 38, 83, 26],
    42. goals: [45, 55, 38, 37, 48, 45, 74, 17],
    43. backgroundColor: '#E91E63',
    44.  
    45. goal: {
    46. backgroundColor: '#C5E1A5',
    47. borderColor: '#E91E63'
    48. }
    49. },
    50. ]
    51. };
    52.  
    53. zingchart.render({
    54. id: 'myChart',
    55. data: chartConfig,
    56. height: 400,
    57. width: '100%'
    58. });
    59. </script>
    60. </body>
    61.  
    62. </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. let chartConfig = {
    2. type: 'bullet',
    3. plot: {
    4. borderRadius: 3,
    5. goal: {
    6. borderWidth: 1,
    7. height: 10,
    8. topState: {
    9. backgroundColor: 'red',
    10. offsetX: 10,
    11. offsetY: 10,
    12. }
    13. }
    14. },
    15. series: [{
    16. values: [35, 42, 67, 89, 25, 34, 67, 85],
    17. goals: [27, 35, 69, 95, 10, 21, 69, 89],
    18. backgroundColor: '#F44336',
    19.  
    20. goal: {
    21. backgroundColor: '#FFE082',
    22. borderColor: '#F44336'
    23. }
    24. },
    25. {
    26. values: [25, 61, 36, 47, 27, 38, 83, 26],
    27. goals: [45, 55, 38, 37, 48, 45, 74, 17],
    28. backgroundColor: '#E91E63',
    29.  
    30. goal: {
    31. backgroundColor: '#C5E1A5',
    32. borderColor: '#E91E63'
    33. }
    34. },
    35. ]
    36. };
    37.  
    38. zingchart.render({
    39. id: 'myChart',
    40. data: chartConfig,
    41. height: 400,
    42. width: '100%'
    43. });