Change Mouseover Point In Highcharts
Can somebody help me with my problem. I have this piecharts, and i need to change point( segment ), when i mouseover on it What the best way you can advise me? Maybe something
Solution 1:
Try to update only graphic using element.attr()
, see: http://jsfiddle.net/rh5fz92q/
plotOptions: {
pie: {
point: {
events: {
mouseOver: function(e){
this.defaultR = this.graphic.r;
this.graphic.attr({
r: 200
});
},
mouseOut: function(e){
this.graphic.attr({
r: this.defaultR
});
}
}
}
}
},
Post a Comment for "Change Mouseover Point In Highcharts"