• 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: 'waterfall',
    25. options: {
    26. positive: {
    27. backgroundColor: 'green'
    28. },
    29. negative: {
    30. backgroundColor: 'red'
    31. },
    32. intermediate: {
    33. backgroundColor: 'blue'
    34. },
    35. final: {
    36. backgroundColor: 'grey',
    37. },
    38. line: {
    39. lineStyle: 'dashed',
    40. lineSegmentSize: 4,
    41. lineGapSize: 4,
    42. lineWidth: 1
    43. }
    44. },
    45. series: [{
    46. values: [
    47. 420,
    48. 210,
    49. -170,
    50. 'SUM',
    51. -140,
    52. 'SUM'
    53. ]
    54. }]
    55. };
    56.  
    57. zingchart.render({
    58. id: 'myChart',
    59. data: chartConfig,
    60. height: '100%',
    61. width: '100%'
    62. });
    63. </script>
    64. </body>
    65.  
    66. </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: 'waterfall',
    3. options: {
    4. positive: {
    5. backgroundColor: 'green'
    6. },
    7. negative: {
    8. backgroundColor: 'red'
    9. },
    10. intermediate: {
    11. backgroundColor: 'blue'
    12. },
    13. final: {
    14. backgroundColor: 'grey',
    15. },
    16. line: {
    17. lineStyle: 'dashed',
    18. lineSegmentSize: 4,
    19. lineGapSize: 4,
    20. lineWidth: 1
    21. }
    22. },
    23. series: [{
    24. values: [
    25. 420,
    26. 210,
    27. -170,
    28. 'SUM',
    29. -140,
    30. 'SUM'
    31. ]
    32. }]
    33. };
    34.  
    35. zingchart.render({
    36. id: 'myChart',
    37. data: chartConfig,
    38. height: '100%',
    39. width: '100%'
    40. });