export icon indicating copy to clipboard operation
export copied to clipboard

Png graph sometimes gets downloaded cropped

Open icrestani opened this issue 2 years ago • 0 comments

I have this problem, not everytime, but 1/10 of the downloads the graph gets downloaded partially, i get only the top left part the code I'm using to convert the graph to png it's the following: var chart = AmCharts.charts[AmCharts.charts.length-1] chart.export.capture( {}, function() { this.toPNG( { multiplier: 2, }, function( data ) { pdf_layout.images[ "image_" + chart.id ] = data; this.download(data, 'test.png') } ); } ); I'm using AmCharts 3 if this can help

icrestani avatar Apr 12 '23 15:04 icrestani