amcharts / dataloader

Apache License 2.0
25 stars 25 forks source link

Real time data issue #19

Open aashishkot opened 7 years ago

aashishkot commented 7 years ago

Hi

I am working on amchart world map plugin. Our data load every 5 mins and we are using map.validateData(); .

But when its refresh the data its also reload the complete world map.

Let me know how can i refresh data without reloading map.

martynasma commented 7 years ago

If you are reloading the whole of the dataProvider the map will inadvertently rebuild and regresh itself, which might be visible.

If you need to work on the same map, you can change the values on each MapObject individually, then call its validate() method.

I hope this helps.