Package | Description |
---|---|
org.pepstock.charba.client |
Main package with all charts implementation, global classes and common interfaces.
|
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.options |
Contains all elements to configure charts at global level (know as chart global options).
|
Modifier and Type | Class and Description |
---|---|
class |
GlobalScale
Default global scale (maps the java script object
Chart.defaults.scale and the result of
Chart.scaleService ). |
Modifier and Type | Method and Description |
---|---|
IsDefaultScale |
IsDefaultScaledOptions.getScale()
Returns the scale/axis defaults.
|
IsDefaultScale |
IsDefaultScales.getXAxis()
Returns the default configuration for x axis.
|
IsDefaultScale |
IsDefaultScales.getYAxis()
Returns the default configuration for y axis.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultChartScale
Defaults for scale/axis option element, based on chart type.
|
Modifier and Type | Method and Description |
---|---|
IsDefaultScale |
DefaultChartOptions.getScale() |
IsDefaultScale |
DefaultChartScales.getXAxis() |
IsDefaultScale |
DefaultChartScales.getYAxis() |
Modifier and Type | Class and Description |
---|---|
class |
DefaultScale
CHART.JS default values for scale/axis element.
|
Modifier and Type | Method and Description |
---|---|
IsDefaultScale |
DefaultScaledOptions.getScale() |
IsDefaultScale |
DefaultScales.getXAxis() |
IsDefaultScale |
DefaultScales.getYAxis() |
Modifier and Type | Class and Description |
---|---|
class |
ExtendedScale
Scale options used internally inside the chart configuration.
Extends the normal scale options with all methods to add callbacks and events. |
class |
Scale
Axes are an integral part of a chart.
|
Modifier and Type | Method and Description |
---|---|
IsDefaultScale |
Scales.getXAxis() |
IsDefaultScale |
Scales.getYAxis() |
Constructor and Description |
---|
ExtendedScale(IsDefaultScale defaultValues)
Creates a scale with default provider.
|
Scale(IsDefaultScale defaultValues)
Creates the object only with default provider.
|
Scale(IsDefaultScale defaultValues,
NativeObject nativeObject)
Creates the object only with default provider and native object.
|