是否可以使用某种特定颜色突出显示mouseover事件上plotband的边框。
我无法找到任何选项。
还有一种以编程方式选择某些绘图带的方法吗?
答案 0 :(得分:0)
您可以通过custom-events扩展名在plotband上捕捉鼠标悬停事件。然后根据需要操作plotBands。
events: {
mouseover:function(){
var elem = this.svgElem;
elem.attr({
'stroke-width':2,
'stroke':'red'
});
}
}