Siva Prasad

Members
  • Content count

    4
  • Joined

  • Last visited

About Siva Prasad

  • Rank
    Forum Newbie
  1. Print Option In Gauge Is Not Working

    Ok. Thanks for your reply. Can you suggest me , how to save the chart/widget on a single button click..
  2. Hi, Print option in angular Angular Gauge is not working. I used the below code: <script type="text/javascript"> FusionCharts.printManager.enabled(true); FusionCharts.addEventListener ( FusionChartsEvents.PrintReadyStateChange , function (identifier, parameter) { if(parameter.ready){ alert("Chart is now ready for printing."); document.getElementById('printButton').disabled = false; } }); </script> <div><input type='button' onclick='FusionCharts.printManager.managedPrint()' value='Print' id='printButton' disabled='disabled' ></div> Please let me know if there is any solution. Thanks in advance..
  3. how to export to pdf to server side on a button click