0

有人可以帮我解决我的问题。

我有这个饼图,

在此处输入图像描述

当我将鼠标悬停在它上面时,我需要更改点(段)

在此处输入图像描述

你能给我建议的最好方法是什么?

也许是这样的,改变点,但我不知道该怎么做

plotOptions: {
        series:{
            point:{
                events: {
                    mouseOver: function( e ){
                        console.log( this )
                    }
                }
            }
        }

    },
4

1 回答 1

4

尝试使用 仅更新图形element.attr(),请参阅: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
                        });
                    }
                }
            }
        }
    }, 
于 2013-09-18T14:30:54.533 回答