• 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. window.guideRules = () => {
    24. return {
    25. lineColor: 'red'
    26. };
    27. };
    28.  
    29. let chartConfig = {
    30. type: 'pareto',
    31. options: {
    32. scaleY2: {
    33. guide: {
    34. rules: [{
    35. rule: '%v <= 60',
    36. lineColor: 'red',
    37. }],
    38. },
    39. }
    40. },
    41. plotarea: {
    42. marginRight: '10%'
    43. },
    44. series: [{
    45. values: [
    46. 4642,
    47. 4345,
    48. 2350,
    49. 1251
    50. ]
    51. }]
    52. };
    53.  
    54. zingchart.render({
    55. id: 'myChart',
    56. data: chartConfig,
    57. height: '100%',
    58. width: '100%'
    59. });
    60. </script>
    61. </body>
    62.  
    63. </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. window.guideRules = () => {
    2. return {
    3. lineColor: 'red'
    4. };
    5. };
    6.  
    7. let chartConfig = {
    8. type: 'pareto',
    9. options: {
    10. scaleY2: {
    11. guide: {
    12. rules: [{
    13. rule: '%v <= 60',
    14. lineColor: 'red',
    15. }],
    16. },
    17. }
    18. },
    19. plotarea: {
    20. marginRight: '10%'
    21. },
    22. series: [{
    23. values: [
    24. 4642,
    25. 4345,
    26. 2350,
    27. 1251
    28. ]
    29. }]
    30. };
    31.  
    32. zingchart.render({
    33. id: 'myChart',
    34. data: chartConfig,
    35. height: '100%',
    36. width: '100%'
    37. });