0

when I export the PNG from Highcharts it call load and render function that means it reloads the chart.

can we restrict calls to load and render events of highcharts when we export the png?

  • Please read [how to ask](https://stackoverflow.com/help/how-to-ask) and improve your question by providing among other a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) – Batajus Dec 23 '21 at 08:32
  • When the chart is exporting the load and render events fire because a new chart is created which has the same config - not mean that the current chart reloads. – Sebastian Wędzel Dec 23 '21 at 14:24
  • @SebastianWędzel so can I restrict this events by any property? – jayanti khutwad Dec 24 '21 at 16:48
  • @jayantikhutwad take a look at this demo: https://jsfiddle.net/BlackLabel/fhsL20ug/ – Sebastian Wędzel Dec 27 '21 at 06:11

1 Answers1

-1

Thanks @SebastianWędzel for your help I will try you solution as well. but this Solved my problem exporting: { chartOptions: { chart: { event:null }, }