Chartbreaker
    Preparing search index...

    Interface SVGAnimatedLength

    The SVGAnimatedLength interface represents attributes of type which can be animated.

    MDN Reference

    interface SVGAnimatedLength {
        animVal: SVGLength;
        baseVal: SVGLength;
    }
    Index

    Properties

    Properties

    animVal: SVGLength

    The animVal property of the SVGAnimatedLength interface contains the current value of an SVG enumeration. If there is no animation, it is the same value as the baseVal.

    MDN Reference

    baseVal: SVGLength

    The baseVal property of the SVGAnimatedLength interface contains the initial value of an SVG enumeration.

    MDN Reference