Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

animation.startup setting is missing #46

Open
kmd1970 opened this issue Dec 23, 2016 · 0 comments
Open

animation.startup setting is missing #46

kmd1970 opened this issue Dec 23, 2016 · 0 comments

Comments

@kmd1970
Copy link

kmd1970 commented Dec 23, 2016

Set animation: {"startup": true} - setting this in your options will cause your chart to start with series values drawn at the baseline, and animate out to their final state.

Added with:

Configuration.fs (line 8)

 type Animation() =
        
        let mutable durationField : int option = None
        let mutable easingField : string option = None
        let mutable startUpField : bool option = None
        
        member __.startup
            with get() = startUpField.Value
            and set(value) = startUpField <- Some value
             
        member __.duration
            with get() = durationField.Value
            and set(value) = durationField <- Some value

        member __.easing
            with get() = easingField.Value
            and set(value) = easingField <- Some value

        member __.ShouldSerializeduration() = not durationField.IsNone
        member __.ShouldSerializeeasing() = not easingField.IsNone
        member __.ShouldSerializestartup() = not startUpField.IsNone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants