• 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: 'bar',
    18. plot: { //global changes to all series
    19. alpha: 0.7,
    20. borderColor: 'black',
    21. borderRadiusTopLeft: 5,
    22. borderRadiusTopRight: 5,
    23. borderWidth: 2,
    24. hoverState: {
    25. backgroundColor: '#909090'
    26. }
    27. },
    28. series: [{
    29. 'values': [28, 19, 30, 35, 46, 36],
    30. },
    31. {
    32. values: [11, 7, 14, 11, 24, 22],
    33. },
    34. {
    35. 'values': [18, 25, 35, 16, 31, 18],
    36. }
    37. ]
    38. };
    39.  
    40. zingchart.render({
    41. id: 'myChart',
    42. data: chartConfig,
    43. height: 400,
    44. width: '100%'
    45. });
    46. </script>
    47. </body>
    48.  
    49. </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: 'bar',
    3. plot: { //global changes to all series
    4. alpha: 0.7,
    5. borderColor: 'black',
    6. borderRadiusTopLeft: 5,
    7. borderRadiusTopRight: 5,
    8. borderWidth: 2,
    9. hoverState: {
    10. backgroundColor: '#909090'
    11. }
    12. },
    13. series: [{
    14. 'values': [28, 19, 30, 35, 46, 36],
    15. },
    16. {
    17. values: [11, 7, 14, 11, 24, 22],
    18. },
    19. {
    20. 'values': [18, 25, 35, 16, 31, 18],
    21. }
    22. ]
    23. };
    24.  
    25. zingchart.render({
    26. id: 'myChart',
    27. data: chartConfig,
    28. height: 400,
    29. width: '100%'
    30. });