我添加了一个新的自定义按钮,并希望在鼠标悬停时更改它的填充。 可以在使用符号图像时完成吗? 如果没有,我有另一个看起来相同但具有不同填充颜色的符号 所以它看起来像徘徊?有没有办法在mouseenter / mouseout上替换图像?
此致 察南
答案 0 :(得分:0)
看看例子:http://jsfiddle.net/AvpDk/
normalState = new Object();
normalState.stroke_width = null;
normalState.stroke = null;
normalState.fill = null;
normalState.padding = null;
normalState.r = null;
hoverState = new Object();
hoverState = normalState;
hoverState.fill = 'red';
pressedState = new Object();
pressedState = normalState;
var custombutton = chart.renderer.button('button', 74, 10, function(){
alert('aaa');
},null,hoverState,pressedState).add();