Chart.refresh() without repositioning the labels

First of all, this framework is really helpful.

currently i’m trying to implement a radarchart that update the data onEvent of certain element,

here is the snippet sample :-

$('div.element').on('click', '.selector', function(e){ radarChart.refresh() });

but currently it will refresh the location of the xAxis and yAxis labels too, is there any way to stop the animation/reset of position on refresh?

Command refresh() will redraw the whole picture, not only data. There is no other way.

is there any other method to update only data?

Unfortunatelly, not.