ZingChart: Disable right click context menu
Use this code above the ZingChart render method to disable right click context menu. The following code references our API event contextmenu captures clicks and disallows right click on the chart. The zc argument corresponds to the id of the chart.
<code>zingchart.bind('zc', 'contextmenu', function(p) {<br> return false;<br>});
Demo -> https://app.zingsoft.com/demos/embed/1BTNU5X1
