• 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. var myConfig = {
    17. type: 'null',
    18. shapes: [{
    19. type: 'square',
    20. group: 1,
    21. size: 15,
    22. backgroundColor: 'red',
    23. x: 15,
    24. y: 20,
    25. hoverState: {
    26. backgroundColor: 'yellow'
    27. }
    28. },
    29. {
    30. type: 'square',
    31. group: 1,
    32. size: 15,
    33. backgroundColor: 'red',
    34. x: 55,
    35. y: 50,
    36. hoverState: {
    37. backgroundColor: 'yellow'
    38. }
    39. },
    40. {
    41. type: 'square',
    42. group: 2,
    43. size: 15,
    44. backgroundColor: 'orange',
    45. x: 95,
    46. y: 50,
    47. hoverState: {
    48. backgroundColor: 'green'
    49. }
    50. },
    51. {
    52. type: 'square',
    53. group: 2,
    54. size: 15,
    55. backgroundColor: 'orange',
    56. x: 125,
    57. y: 30,
    58. hoverState: {
    59. backgroundColor: 'green'
    60. }
    61. }
    62. ]
    63. }
    64. zingchart.render({
    65. "id": 'myChart',
    66. "width": '100%',
    67. "height": 400,
    68. "data": myConfig
    69. });
    70.  
    71. setTimeout(function() {
    72. zingchart.exec('myChart', 'updateobject', {
    73. type: 'shape',
    74. group: 1,
    75. data: {
    76. backgroundColor: 'black'
    77. }
    78. });
    79. zingchart.exec('myChart', 'updateobject', {
    80. type: 'shape',
    81. group: 2,
    82. data: {
    83. backgroundColor: 'brown'
    84. }
    85. });
    86. }, 2000)
    87. </script>
    88. </body>
    89.  
    90. </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. var myConfig = {
    2. type: 'null',
    3. shapes: [{
    4. type: 'square',
    5. group: 1,
    6. size: 15,
    7. backgroundColor: 'red',
    8. x: 15,
    9. y: 20,
    10. hoverState: {
    11. backgroundColor: 'yellow'
    12. }
    13. },
    14. {
    15. type: 'square',
    16. group: 1,
    17. size: 15,
    18. backgroundColor: 'red',
    19. x: 55,
    20. y: 50,
    21. hoverState: {
    22. backgroundColor: 'yellow'
    23. }
    24. },
    25. {
    26. type: 'square',
    27. group: 2,
    28. size: 15,
    29. backgroundColor: 'orange',
    30. x: 95,
    31. y: 50,
    32. hoverState: {
    33. backgroundColor: 'green'
    34. }
    35. },
    36. {
    37. type: 'square',
    38. group: 2,
    39. size: 15,
    40. backgroundColor: 'orange',
    41. x: 125,
    42. y: 30,
    43. hoverState: {
    44. backgroundColor: 'green'
    45. }
    46. }
    47. ]
    48. }
    49. zingchart.render({
    50. "id": 'myChart',
    51. "width": '100%',
    52. "height": 400,
    53. "data": myConfig
    54. });
    55.  
    56. setTimeout(function() {
    57. zingchart.exec('myChart', 'updateobject', {
    58. type: 'shape',
    59. group: 1,
    60. data: {
    61. backgroundColor: 'black'
    62. }
    63. });
    64. zingchart.exec('myChart', 'updateobject', {
    65. type: 'shape',
    66. group: 2,
    67. data: {
    68. backgroundColor: 'brown'
    69. }
    70. });
    71. }, 2000)