我正在SVG中绘制箭头,使用svg:line元素,其标记定义如下:

    svg_.append("svg:defs")
        .append("svg:marker")
        .attr("id", "bluearrowhead")
        .attr("viewBox", "0 -5 10 10")
        .attr("refX", 0)
        .attr("refY", 0)
        .attr("markerWidth", 6)
        .attr("markerHeight", 6)
        .attr("orient", "auto")
        .append("svg:path")
        .attr("d", "M0,-5L10,0L0,5")
        .attr("fill", "deepskyblue");

我希望能够淡出箭头。对于箭头轴,此方法有效:
    svg_.selectAll(".arrows")
        .transition()
        .duration(1000)
        .style("stroke-opacity", 0.0)
        .remove();

但是当轴褪色时,箭头停留1000毫秒,然后突然消失。我已经在行上尝试了fill-opacity,并在selectAll上尝试了.bluearrowhead,但无济于事。有什么方法可以转换标记样式?

最佳答案

尝试:

svg_.selectAll(".arrows")
    .transition()
    .duration(1000)
    .attr("opacity", 0.0)

09-25 16:14
查看更多