• 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. var myConfig = {
    24. "graphset": [{
    25. "type": "mixed",
    26. "series": [{
    27. "type": "bar",
    28. "values": [59, 70, 40, 75, 33, 50, 65],
    29. "bar-width": "50%"
    30. }, {
    31. "type": "line",
    32. "values": [49, 30, 21, 15, 59, 51, 69],
    33. "aspect": "spline"
    34. }]
    35. }, {
    36. "type": "mixed",
    37. "series": [{
    38. "type": "bar",
    39. "values": [55, 71, 45, 77, 29, 40, 59],
    40. "bar-width": "50%"
    41. }, {
    42. "type": "line",
    43. "values": [40, 29, 33, 19, 50, 61, 66],
    44. "aspect": "spline"
    45. }]
    46. }, {
    47. "type": "mixed",
    48. "series": [{
    49. "type": "bar",
    50. "values": [49, 55, 70, 60, 55, 43, 55],
    51. "bar-width": "50%"
    52. }, {
    53. "type": "line",
    54. "values": [60, 34, 67, 27, 64, 71, 54],
    55. "aspect": "spline"
    56. }]
    57. }, {
    58. "type": "mixed",
    59. "series": [{
    60. "type": "bar",
    61. "values": [50, 41, 59, 79, 70, 61, 53],
    62. "bar-width": "50%"
    63. }, {
    64. "type": "line",
    65. "values": [59, 15, 29, 34, 51, 66, 75],
    66. "aspect": "spline"
    67. }]
    68. }]
    69. };
    70.  
    71. zingchart.render({
    72. id: 'myChart',
    73. data: myConfig,
    74. height: "100%",
    75. width: "100%"
    76. });
    77. </script>
    78. </body>
    79.  
    80. </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. var myConfig = {
    2. "graphset": [{
    3. "type": "mixed",
    4. "series": [{
    5. "type": "bar",
    6. "values": [59, 70, 40, 75, 33, 50, 65],
    7. "bar-width": "50%"
    8. }, {
    9. "type": "line",
    10. "values": [49, 30, 21, 15, 59, 51, 69],
    11. "aspect": "spline"
    12. }]
    13. }, {
    14. "type": "mixed",
    15. "series": [{
    16. "type": "bar",
    17. "values": [55, 71, 45, 77, 29, 40, 59],
    18. "bar-width": "50%"
    19. }, {
    20. "type": "line",
    21. "values": [40, 29, 33, 19, 50, 61, 66],
    22. "aspect": "spline"
    23. }]
    24. }, {
    25. "type": "mixed",
    26. "series": [{
    27. "type": "bar",
    28. "values": [49, 55, 70, 60, 55, 43, 55],
    29. "bar-width": "50%"
    30. }, {
    31. "type": "line",
    32. "values": [60, 34, 67, 27, 64, 71, 54],
    33. "aspect": "spline"
    34. }]
    35. }, {
    36. "type": "mixed",
    37. "series": [{
    38. "type": "bar",
    39. "values": [50, 41, 59, 79, 70, 61, 53],
    40. "bar-width": "50%"
    41. }, {
    42. "type": "line",
    43. "values": [59, 15, 29, 34, 51, 66, 75],
    44. "aspect": "spline"
    45. }]
    46. }]
    47. };
    48.  
    49. zingchart.render({
    50. id: 'myChart',
    51. data: myConfig,
    52. height: "100%",
    53. width: "100%"
    54. });