• Edit
  • Download
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingSoft Demo</title>
    7. <script nonce="undefined" src="//www.zingchart.com/scripts/zcDocs.js"></script>
    8. <link href='//www.zingchart.com/css/zcDocs.css' rel='stylesheet' type='text/css'>
    9. <script nonce="undefined" src='//code.jquery.com/jquery-2.1.4.min.js'></script>
    10.  
    11. <script nonce="undefined" src="https://cdn.zingchart.com/zingchart.min.js"></script>
    12. <style></style>
    13. </head>
    14.  
    15. <body>
    16. <div id='demo-chart'></div>
    17. <button class='btn btn-info' id='demo1'>Set Node Value</button>
    18. <pre id='output'></pre>
    19. <script>
    20. ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
    21. var myConfig = {
    22. 'type': 'line',
    23. 'series': [{
    24. 'values': [11, 26, 7, 44, 19]
    25. },
    26. {
    27. 'values': [42, 13, 21, 15, 33]
    28. }
    29. ]
    30. };
    31.  
    32. demo1.addEventListener('click', function() {
    33. zingchart.exec('demo-chart', 'setnodevalue', {
    34. 'plotindex': 1,
    35. 'nodeindex': 2,
    36. 'value': zcdocs.utils.rvalue(0, 50)
    37. });
    38. });
    39.  
    40. zingchart.bind(null, 'node_set', function(e) {
    41. console.log(e)
    42. zcdocs.demos.dump('node_set', e);
    43. });
    44.  
    45. zingchart.render({
    46. id: 'demo-chart',
    47. data: myConfig,
    48. height: 350,
    49. width: '100%'
    50. });
    51. </script>
    52. </body>
    53.  
    54. </html>
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingSoft Demo</title>
    7. <script src="//www.zingchart.com/scripts/zcDocs.js"></script>
    8. <link href='//www.zingchart.com/css/zcDocs.css' rel='stylesheet' type='text/css'>
    9. <script src='//code.jquery.com/jquery-2.1.4.min.js'></script>
    10.  
    11. <script src="https://cdn.zingchart.com/zingchart.min.js"></script>
    12. </head>
    13.  
    14. <body>
    15. <div id='demo-chart'></div>
    16. <button class='btn btn-info' id='demo1'>Set Node Value</button>
    17. <pre id='output'></pre>
    18. </body>
    19.  
    20. </html>
    1.  
    1. var myConfig = {
    2. 'type': 'line',
    3. 'series': [{
    4. 'values': [11, 26, 7, 44, 19]
    5. },
    6. {
    7. 'values': [42, 13, 21, 15, 33]
    8. }
    9. ]
    10. };
    11.  
    12. demo1.addEventListener('click', function() {
    13. zingchart.exec('demo-chart', 'setnodevalue', {
    14. 'plotindex': 1,
    15. 'nodeindex': 2,
    16. 'value': zcdocs.utils.rvalue(0, 50)
    17. });
    18. });
    19.  
    20. zingchart.bind(null, 'node_set', function(e) {
    21. console.log(e)
    22. zcdocs.demos.dump('node_set', e);
    23. });
    24.  
    25. zingchart.render({
    26. id: 'demo-chart',
    27. data: myConfig,
    28. height: 350,
    29. width: '100%'
    30. });