I am using funnel chart.As per my requirement I have a drop down from which I should be able to download the chart as image,pdf,svg formats.
So I wrote the code like this.
function export(imagetype){
var chartObject = FusionCharts('mychart');
chartObject.exportChart({ exportFormat : imagetype});
}
sp for the first time when I click on the download as jpg ,the function works fine ,I am able to download the chart.
Then When I am clicking the same button again,nothing is happening,not even an error is showing.
So I am stuck at this,any help will be grateful.