• 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: 'bar',
    25. title: {
    26. text: 'Hover over a node to see the tooltip'
    27. },
    28. plot: {
    29. tooltip: {
    30. text: 'The value of this node is %node-value.',
    31. backgroundColor: '#f90',
    32. borderColor: '#f60',
    33. borderRadius: -5,
    34. borderWidth: 2,
    35. callout: true,
    36. calloutHeight: 20,
    37. calloutPosition: 'bottom',
    38. calloutWidth: 0,
    39. padding: 10,
    40. shadow: true,
    41. calloutTip: {
    42. type: 'circle',
    43. backgroundColor: '#fff',
    44. borderWidth: 2,
    45. borderColor: '#f60',
    46. size: 5,
    47. offsetY: 5,
    48. }
    49. }
    50. },
    51. series: [{
    52. values: [11, 26, 7, 44, 11, 42, 13, 21, 15, 33, 23, 24, 13, 4, 18]
    53. }]
    54. };
    55.  
    56. zingchart.render({
    57. id: 'myChart',
    58. data: chartConfig,
    59. height: '100%',
    60. width: '100%'
    61. });
    62. </script>
    63. </body>
    64.  
    65. </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: 'bar',
    3. title: {
    4. text: 'Hover over a node to see the tooltip'
    5. },
    6. plot: {
    7. tooltip: {
    8. text: 'The value of this node is %node-value.',
    9. backgroundColor: '#f90',
    10. borderColor: '#f60',
    11. borderRadius: -5,
    12. borderWidth: 2,
    13. callout: true,
    14. calloutHeight: 20,
    15. calloutPosition: 'bottom',
    16. calloutWidth: 0,
    17. padding: 10,
    18. shadow: true,
    19. calloutTip: {
    20. type: 'circle',
    21. backgroundColor: '#fff',
    22. borderWidth: 2,
    23. borderColor: '#f60',
    24. size: 5,
    25. offsetY: 5,
    26. }
    27. }
    28. },
    29. series: [{
    30. values: [11, 26, 7, 44, 11, 42, 13, 21, 15, 33, 23, 24, 13, 4, 18]
    31. }]
    32. };
    33.  
    34. zingchart.render({
    35. id: 'myChart',
    36. data: chartConfig,
    37. height: '100%',
    38. width: '100%'
    39. });