• 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. label: {
    28. text: 'Scale Y 2 Label',
    29. color: 'red',
    30. mediaRules: [{
    31. maxWidth: 400,
    32. color: 'blue'
    33. }],
    34. }
    35. },
    36.  
    37. },
    38. plotarea: {
    39. marginRight: '10%',
    40. mediaRules: [{
    41. maxWidth: 400,
    42. marginRight: '25%'
    43. }]
    44. },
    45. series: [{
    46. values: [
    47. 4642,
    48. 4345,
    49. 2350,
    50. 1251
    51. ]
    52. }]
    53. };
    54.  
    55. zingchart.render({
    56. id: 'myChart',
    57. data: chartConfig,
    58. height: '100%',
    59. width: '100%'
    60. });
    61. </script>
    62. </body>
    63.  
    64. </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. label: {
    6. text: 'Scale Y 2 Label',
    7. color: 'red',
    8. mediaRules: [{
    9. maxWidth: 400,
    10. color: 'blue'
    11. }],
    12. }
    13. },
    14.  
    15. },
    16. plotarea: {
    17. marginRight: '10%',
    18. mediaRules: [{
    19. maxWidth: 400,
    20. marginRight: '25%'
    21. }]
    22. },
    23. series: [{
    24. values: [
    25. 4642,
    26. 4345,
    27. 2350,
    28. 1251
    29. ]
    30. }]
    31. };
    32.  
    33. zingchart.render({
    34. id: 'myChart',
    35. data: chartConfig,
    36. height: '100%',
    37. width: '100%'
    38. });