• 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. margin: 0;
    16. padding: 0;
    17. }
    18. </style>
    19. </head>
    20.  
    21. <body>
    22. <div id='myChart'></div>
    23. <script>
    24. ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
    25. var myConfig = {
    26. type: 'bar',
    27. title: {
    28. text: 'Right Click On a Node then the plotarea (orange)'
    29. },
    30. plotarea: {
    31. backgroundColor: '#FFA726'
    32. },
    33. series: [{
    34. values: [35, 42, 67, 89, 25, 34, 67, 85]
    35. }]
    36. };
    37.  
    38.  
    39. zingchart.bind('myChart', 'contextmenu', function(p) {
    40. return (p.target !== 'node');
    41. });
    42.  
    43. zingchart.render({
    44. id: 'myChart',
    45. data: myConfig,
    46. height: '100%',
    47. width: '100%'
    48. });
    49. </script>
    50. </body>
    51.  
    52. </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. margin: 0;
    7. padding: 0;
    8. }
    1. var myConfig = {
    2. type: 'bar',
    3. title: {
    4. text: 'Right Click On a Node then the plotarea (orange)'
    5. },
    6. plotarea: {
    7. backgroundColor: '#FFA726'
    8. },
    9. series: [{
    10. values: [35, 42, 67, 89, 25, 34, 67, 85]
    11. }]
    12. };
    13.  
    14.  
    15. zingchart.bind('myChart', 'contextmenu', function(p) {
    16. return (p.target !== 'node');
    17. });
    18.  
    19. zingchart.render({
    20. id: 'myChart',
    21. data: myConfig,
    22. height: '100%',
    23. width: '100%'
    24. });