如果我将路径添加到 drawComponent 并且它们重叠,则路径会按照添加的顺序堆叠。我可以为每个精灵添加一个事件侦听器,以便在鼠标悬停时改变颜色和笔触宽度,但是如何将重叠的路径带到前面?
这是一组改变颜色的监听器:
listeners: {
mouseover: function(line) {
line.setAttributes({ stroke: "red", "stroke-width": 8}, true );
},
mouseout: function(line) {
line.setAttributes({ stroke: "black", "stroke-width": 4 }, true );
}
}