Uses of Interface
org.pepstock.charba.client.options.AnimationPropertyKey
-
Packages that use AnimationPropertyKey Package Description org.pepstock.charba.client.defaults Contains all interfaces need to provide defaults values of the chart options.org.pepstock.charba.client.defaults.chart Contains the default values of chart options based on type of chart instance.org.pepstock.charba.client.defaults.globals Contains the default values of chart options for all chart types (CHART.JS options defaults).org.pepstock.charba.client.enums Contains all enumerations of some chart options where only a specific set of values can be set.org.pepstock.charba.client.options Contains all elements to configure charts at global level (know as chart global options). -
-
Uses of AnimationPropertyKey in org.pepstock.charba.client.defaults
Methods in org.pepstock.charba.client.defaults that return types with arguments of type AnimationPropertyKey Modifier and Type Method Description List<AnimationPropertyKey>
IsDefaultAnimationCollection. getProperties()
Returns the properties defined in the animation collection. -
Uses of AnimationPropertyKey in org.pepstock.charba.client.defaults.chart
Methods in org.pepstock.charba.client.defaults.chart that return types with arguments of type AnimationPropertyKey Modifier and Type Method Description List<AnimationPropertyKey>
DefaultChartAnimationCollection. getProperties()
-
Uses of AnimationPropertyKey in org.pepstock.charba.client.defaults.globals
Methods in org.pepstock.charba.client.defaults.globals that return types with arguments of type AnimationPropertyKey Modifier and Type Method Description List<AnimationPropertyKey>
DefaultAnimationCollection. getProperties()
-
Uses of AnimationPropertyKey in org.pepstock.charba.client.enums
Classes in org.pepstock.charba.client.enums that implement AnimationPropertyKey Modifier and Type Class Description class
DefaultAnimationPropertyKey
Cores animation properties, to use to animate, provided out of the box by CHART.JS.Methods in org.pepstock.charba.client.enums that return types with arguments of type AnimationPropertyKey Modifier and Type Method Description List<AnimationPropertyKey>
DefaultAnimationCollectionKey. properties()
List<AnimationPropertyKey>
DefaultAnimationPropertyKey. properties()
Methods in org.pepstock.charba.client.enums with parameters of type AnimationPropertyKey Modifier and Type Method Description static boolean
DefaultAnimationPropertyKey. is(AnimationPropertyKey property)
Returnstrue
if the argument is equals to a default animation property. -
Uses of AnimationPropertyKey in org.pepstock.charba.client.options
Classes in org.pepstock.charba.client.options that implement AnimationPropertyKey Modifier and Type Class Description class
StandardAnimationProperty
This is a standard implementation of an animation property.Methods in org.pepstock.charba.client.options that return AnimationPropertyKey Modifier and Type Method Description static AnimationPropertyKey
AnimationPropertyKey. checkAndGetIfValid(AnimationPropertyKey property)
Checks if property passed as argument is notnull
and its value is notnull
as well.
If not, throw aIllegalArgumentException
, otherwise it returns the key.static AnimationPropertyKey
AnimationPropertyKey. create(String property, AnimationType type)
Returns a animation property instance by its string value.Methods in org.pepstock.charba.client.options that return types with arguments of type AnimationPropertyKey Modifier and Type Method Description List<AnimationPropertyKey>
AnimationCollection. getProperties()
Returns the properties defined in the animation collection.List<AnimationPropertyKey>
AnimationCollectionKey. properties()
Returns the animation properties related to the collection.List<AnimationPropertyKey>
StandardAnimationCollection. properties()
List<AnimationPropertyKey>
StandardAnimationProperty. properties()
Methods in org.pepstock.charba.client.options with parameters of type AnimationPropertyKey Modifier and Type Method Description static AnimationPropertyKey
AnimationPropertyKey. checkAndGetIfValid(AnimationPropertyKey property)
Checks if property passed as argument is notnull
and its value is notnull
as well.
If not, throw aIllegalArgumentException
, otherwise it returns the key.static void
AnimationPropertyKey. checkIfValid(AnimationPropertyKey property)
Checks if type passed as argument is notnull
and its type is notnull
as well.
If not, throw aIllegalArgumentException
.static AnimationCollectionKey
AnimationCollectionKey. create(String collection, AnimationPropertyKey... properties)
Returns a animation collection instance by its string value.static boolean
AnimationPropertyKey. isValid(AnimationPropertyKey property)
Returnstrue
if type passed as argument is notnull
and its type is notnull
as well.void
AnimationCollection. setProperties(AnimationPropertyKey... properties)
Sets the properties to be defined in the animation collection.Method parameters in org.pepstock.charba.client.options with type arguments of type AnimationPropertyKey Modifier and Type Method Description void
AnimationCollection. setProperties(List<AnimationPropertyKey> properties)
Sets the properties to be defined in the animation collection.
-