Interface HasAnimationOptions
- 
- All Superinterfaces:
- IsDefaultAnimationContainer,- IsDefaultAnimationTransition
 - All Known Implementing Classes:
- AreaDataset,- BarDataset,- BubbleDataset,- BubbleMapDataset,- ChartOptions,- ChoroplethDataset,- Dataset,- DoughnutDataset,- ExtendedOptions,- GaugeDataset,- GlobalOptions,- HorizontalBarDataset,- HoverDataset,- HoverFlexDataset,- LineDataset,- LiningDataset,- MatrixDataset,- MeterDataset,- Options,- OptionsNode,- PieDataset,- PolarAreaDataset,- RadarDataset,- RegressionDataset,- SankeyDataset,- ScaledOptions,- ScatterDataset,- StackedAreaDataset,- StackedBarDataset,- StackedHorizontalBarDataset,- StackedLineDataset,- StackedVerticalLineDataset,- TimeSeriesBarDataset,- TimeSeriesHorizontalBarDataset,- TimeSeriesLineDataset,- Tooltips,- TreeMapDataset,- TypedDataset,- VerticalLineDataset
 
 public interface HasAnimationOptions extends IsDefaultAnimationContainer Defines a configuration element which is managing the animation options items, ANIMATION, ANIMATIONS and TRANSITIONS.- Author:
- Andrea "Stock" Stocchero
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AnimationgetAnimation()Returns the animation element.AnimationContainergetAnimationContainer()Returns an animation container instance to use in the default methods of this interface.default AnimationsgetAnimations()Returns the animations collection element.default TransitionsgetTransitions()Returns the animation transition element.default booleanisAnimationEnabled()Returnstrueif animation is enabled, otherwisefalse.default voidsetAnimationEnabled(boolean enabled)Enables or disables the animation.
 
- 
- 
- 
Method Detail- 
getAnimationContainerAnimationContainer getAnimationContainer() Returns an animation container instance to use in the default methods of this interface.- Returns:
- an animation container instance
 
 - 
getAnimationdefault Animation getAnimation() Returns the animation element.- Specified by:
- getAnimationin interface- IsDefaultAnimationTransition
- Returns:
- the animation
 
 - 
getAnimationsdefault Animations getAnimations() Returns the animations collection element.- Specified by:
- getAnimationsin interface- IsDefaultAnimationTransition
- Returns:
- the animations collection
 
 - 
getTransitionsdefault Transitions getTransitions() Returns the animation transition element.- Specified by:
- getTransitionsin interface- IsDefaultAnimationContainer
- Returns:
- the animation transition
 
 - 
setAnimationEnableddefault void setAnimationEnabled(boolean enabled) Enables or disables the animation.- Parameters:
- enabled- if- truethe animation is enabled otherwise- falseto disable it.
 
 - 
isAnimationEnableddefault boolean isAnimationEnabled() Returnstrueif animation is enabled, otherwisefalse.- Returns:
- trueif animation is enabled, otherwise- false
 
 
- 
 
-