-
Notifications
You must be signed in to change notification settings - Fork 164
Description
Describe the feature request
If I wanted to change how long it takes for the chart-update to render, I cannot do that because it's hardcoded without options in the ts-file (here).
Which charts does this feature request apply to?
All charts
Describe the solution you'd like
I'd like to be able to call Update on the chart-components with some additional, optional parameters like the duration, if the update should be lazy (can be interrupted) and which easing style. These should be optional parameters so
- you don't have to supply them
- you can only supply one or two if you want
- you can see the default values
- backwards-compatibility
However, since we'll have to implement a new string-enum, we won't be able to do it without an overload because an instance of that string-enum won't be a compile-time constant but that's not an issue.
These options are described here.
Describe alternatives you've considered
Change the js/ts on your own and link it statically but that's not desirable.
Additional context
Here are the easing options and some more information we might need.