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