Chartbreaker
    Preparing search index...

    Interface SVGAnimatedLengthList

    The SVGAnimatedLengthList interface is used for attributes of type SVGLengthList which can be animated.

    MDN Reference

    interface SVGAnimatedLengthList {
        animVal: SVGLengthList;
        baseVal: SVGLengthList;
    }
    Index

    Properties

    Properties

    animVal: SVGLengthList

    The animVal read-only property of the SVGAnimatedLengthList interface represents the animated value of an attribute that accepts a list of <length>, <percentage>, or <number> values.

    MDN Reference

    baseVal: SVGLengthList

    The baseVal read-only property of the SVGAnimatedLengthList interface represents the base (non-animated) value of an animatable attribute that accepts a list of <length>, <percentage>, or <number> values.

    MDN Reference