0

是否可以markers使用动画移动道场图表中显示的指针?

请帮忙。

4

1 回答 1

1

解决方案之一可能是这样的。

//下面是标记的简单动画

chart1.connectToPlot("default", function (e){
var ele = e.shape ? e.shape.rawNode ? e.shape.rawNode : false  : false;
    if(!ele) return;
if(e.type == "onmouseover")
ele.setAttribute("stroke-width", 3)
else if (e.type == "onmouseout")
ele.setAttribute("stroke-width", 1.5)
}

您可以将此功能用于原始 svg 节点的一些复杂动画。而不是在上面的代码中调用 setAttrbuite,而是调用下面的函数,将原始 svg 节点传递给它。

function cmplxAnimForRawNode(RawSVGNode){
        var svgNS = "http://www.w3.org/2000/svg";       
        var node = document.createElementNS(svgNS, "animateTransform");
        var atts = {attributeType:"XML", attributeName:"transform", type:"scale" ,from:"1" ,to:"0" ,dur:"5s", fill:"freeze"}
        for(name in atts) {
            node.setAttributeNS(null, name, atts[name]);
        }
        RawSVGNode.appendChild(node);

        }
于 2011-05-30T14:31:40.040 回答