Chartbreaker
    Preparing search index...

    Interface SVGAnimatedString

    The SVGAnimatedString interface represents string attributes which can be animated from each SVG declaration.

    MDN Reference

    interface SVGAnimatedString {
        animVal: string;
        baseVal: string;
    }
    Index

    Properties

    Properties

    animVal: string

    The animVal read-only property of the SVGAnimatedString interface contains the same value as the SVGAnimatedString.baseVal property.

    MDN Reference

    baseVal: string

    BaseVal gets or sets the base value of the given attribute before any animations are applied.

    MDN Reference