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).
|
Modifier and Type | Method and Description |
---|---|
List<AnimationPropertyKey> |
IsDefaultAnimationCollection.getProperties()
Returns the properties defined in the the animation collection.
|
Modifier and Type | Method and Description |
---|---|
List<AnimationPropertyKey> |
DefaultChartAnimationCollection.getProperties() |
Modifier and Type | Method and Description |
---|---|
List<AnimationPropertyKey> |
DefaultAnimationCollection.getProperties() |
Modifier and Type | Class and Description |
---|---|
class |
DefaultAnimationPropertyKey
Cores animation properties, to use to animate, provided out of the box by CHART.JS.
|
Modifier and Type | Method and Description |
---|---|
List<AnimationPropertyKey> |
DefaultAnimationCollectionKey.properties() |
List<AnimationPropertyKey> |
DefaultAnimationPropertyKey.properties() |
Modifier and Type | Method and Description |
---|---|
static boolean |
DefaultAnimationPropertyKey.is(AnimationPropertyKey property)
Returns
true if the argument is equals to a default animation property. |
Modifier and Type | Class and Description |
---|---|
class |
StandardAnimationProperty
This is a standard implementation of an animation property.
|
Modifier and Type | Method and Description |
---|---|
static AnimationPropertyKey |
AnimationPropertyKey.checkAndGetIfValid(AnimationPropertyKey property)
Checks if property passed as argument is not
null and its value is not null as well.If not, throw a IllegalArgumentException , otherwise it returns the key. |
static AnimationPropertyKey |
AnimationPropertyKey.create(String property,
AnimationType type)
Returns a animation property instance by its string value.
|
Modifier and Type | Method and Description |
---|---|
List<AnimationPropertyKey> |
AnimationCollection.getProperties()
Returns the properties defined in the the animation collection.
|
List<AnimationPropertyKey> |
StandardAnimationProperty.properties() |
List<AnimationPropertyKey> |
StandardAnimationCollection.properties() |
List<AnimationPropertyKey> |
AnimationCollectionKey.properties()
Returns the animation properties related to the collection.
|
Modifier and Type | Method and Description |
---|---|
static AnimationPropertyKey |
AnimationPropertyKey.checkAndGetIfValid(AnimationPropertyKey property)
Checks if property passed as argument is not
null and its value is not null as well.If not, throw a IllegalArgumentException , otherwise it returns the key. |
static void |
AnimationPropertyKey.checkIfValid(AnimationPropertyKey property)
Checks if type passed as argument is not
null and its type is not null as well.If not, throw a IllegalArgumentException . |
static AnimationCollectionKey |
AnimationCollectionKey.create(String collection,
AnimationPropertyKey... properties)
Returns a animation collection instance by its string value.
|
static boolean |
AnimationPropertyKey.isValid(AnimationPropertyKey property)
Returns
true if type passed as argument is not null and its type is not null as well. |
void |
AnimationCollection.setProperties(AnimationPropertyKey... properties)
Sets the properties to be defined in the the animation collection.
|
Modifier and Type | Method and Description |
---|---|
void |
AnimationCollection.setProperties(List<AnimationPropertyKey> properties)
Sets the properties to be defined in the the animation collection.
|