Uses of Interface
org.pepstock.charba.client.commons.PropertyKey
-
Packages that use PropertyKey Package Description org.pepstock.charba.client.annotation Contains all classes to activate theAnnotationPlugin.ID
plugin (AKAchartjs-plugin-annotation.js
) for CHART.js.org.pepstock.charba.client.commons Core classes to manage the inter-operations with java script code.org.pepstock.charba.client.configuration Contains all elements to configure a chart instance (know as chart options at instance level).org.pepstock.charba.client.datalabels Contains all classes to activate theDataLabelsPlugin.ID
plugin (AKAchartjs-plugin-datalabels.js
) for CHART.js.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.labels Contains all classes to useLabelsPlugin.ID
plugin (AKAchartjs-plugin-labels.js
) available for CHART.JS.org.pepstock.charba.client.options Contains all elements to configure charts at global level (know as chart global options). -
-
Uses of PropertyKey in org.pepstock.charba.client.annotation
Subinterfaces of PropertyKey in org.pepstock.charba.client.annotation Modifier and Type Interface Description interface
AnnotationId
Represents the annotation id of a annotation configuration object in theAnnotationPlugin.ID
plugin. -
Uses of PropertyKey in org.pepstock.charba.client.commons
Methods in org.pepstock.charba.client.commons with parameters of type PropertyKey Modifier and Type Method Description static void
PropertyKey. checkIfValid(PropertyKey id)
Checks if id passed as argument is notnull
and its value is notnull
as well and could be a valid property key.
If not, throw aIllegalArgumentException
.static boolean
PropertyKey. isValid(PropertyKey id)
Returnstrue
if id passed as argument is notnull
and its value is notnull
as well and could be a valid property key. -
Uses of PropertyKey in org.pepstock.charba.client.configuration
Subinterfaces of PropertyKey in org.pepstock.charba.client.configuration Modifier and Type Interface Description interface
AxisType
Represents the scale type of a scale/axis object.Classes in org.pepstock.charba.client.configuration that implement PropertyKey Modifier and Type Class Description class
StandardAxisType
This is a standard implementation of a axis type -
Uses of PropertyKey in org.pepstock.charba.client.datalabels
Subinterfaces of PropertyKey in org.pepstock.charba.client.datalabels Modifier and Type Interface Description interface
DataLabelId
Represents the label id of a label configuration object in theDataLabelsPlugin.ID
plugin. -
Uses of PropertyKey in org.pepstock.charba.client.enums
Classes in org.pepstock.charba.client.enums that implement PropertyKey Modifier and Type Class Description class
ChartAxisType
Axes are an integral part of a chart.class
DefaultScaleId
Enumerates the default scale id. -
Uses of PropertyKey in org.pepstock.charba.client.labels
Subinterfaces of PropertyKey in org.pepstock.charba.client.labels Modifier and Type Interface Description interface
LabelId
Represents the label id of a label configuration object in theLabelsPlugin.ID
plugin. -
Uses of PropertyKey in org.pepstock.charba.client.options
Subinterfaces of PropertyKey in org.pepstock.charba.client.options Modifier and Type Interface Description interface
ScaleId
Represents the scale id of a scale/axis object.Classes in org.pepstock.charba.client.options that implement PropertyKey Modifier and Type Class Description class
StandardScaleId
This is a standard implementation of a scale id
-