Chartbreaker
    Preparing search index...

    Interface SVGAnimatedNumber

    The SVGAnimatedNumber interface represents attributes of type <number> which can be animated.

    MDN Reference

    interface SVGAnimatedNumber {
        animVal: number;
        baseVal: number;
    }
    Index

    Properties

    Properties

    animVal: number

    The animVal read-only property of the SVGAnimatedNumber interface represents the animated value of an SVG element's numeric attribute.

    MDN Reference

    baseVal: number

    The baseVal property of the SVGAnimatedNumber interface represents the base (non-animated) value of an animatable numeric attribute.

    MDN Reference