Package | Description |
---|---|
org.pepstock.charba.client |
Main package with all charts implementation, global classes and common interfaces.
|
org.pepstock.charba.client.configuration |
Contains all elements to configure a chart instance (know as chart options at instance level).
|
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.impl.charts |
Contains METER and GAUGE charts implementations (based on controllers), available out-of-the box.
|
org.pepstock.charba.client.items |
Contains all elements generated by CHART.JS, which are mapping java script objects, to use at runtime in plugins, events or
controllers.
|
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 |
ChartOptions
This object is mapping the default options related to the chart type.
|
Modifier and Type | Method and Description |
---|---|
IsDefaultScaledOptions |
IsChart.getDefaultChartOptions()
Returns the default options created based on chart type.
|
IsDefaultScaledOptions |
AbstractChart.getDefaultChartOptions()
Returns the default options created based on chart type.
|
IsDefaultScaledOptions |
IsChart.getWholeOptions()
Returns the default options by a chart instance, merging global, chart type global and chart options.
|
IsDefaultScaledOptions |
AbstractChart.getWholeOptions()
Returns the default options by a chart instance, merging global, chart type global and chart options.
If the options is not consistent, it will returns the AbstractChart.getDefaultChartOptions() . |
Constructor and Description |
---|
AbstractPieOptions(IsChart chart,
IsDefaultScaledOptions defaultvalues)
Builds the object storing the chart instance and defaults.
|
BarOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.
|
BubbleOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance.
|
DoughnutOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default options.
|
LineOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.
|
PieOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.
|
PolarAreaOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.
|
RadarOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.
|
ScatterOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.
|
SingleScaleOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.
|
StackedOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.
|
StackedOptions(IsChart chart,
IsDefaultScaledOptions defaultValues,
boolean onlyYScaled)
Builds the object storing the chart instance, default values and if only Y axis is scaled.
|
TimeSeriesBarOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.
|
TimeSeriesLineOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultChartOptions
Defaults for options element, based on chart type.
|
class |
DefaultGlobalOptions
Defaults for options element, using the defualt global options.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultScaledOptions
CHART.JS default values for OPTIONS element for scaled charts.
|
Constructor and Description |
---|
GaugeOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and defaults.
|
MeterOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and defaults.
|
Modifier and Type | Class and Description |
---|---|
class |
OptionsNode
Wrapper of options node of CHART.JS.
|
Modifier and Type | Class and Description |
---|---|
class |
ExtendedOptions
Options used internally inside the chart configuration.
|
class |
ScaledOptions
Base object which maps chart options, with scales elements to set axes configurations.
|
Constructor and Description |
---|
ExtendedOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Creates an options with default provider.
|
ExtendedOptions(IsChart chart,
IsDefaultScaledOptions defaultValues,
OptionsEnvelop envelop)
Creates an options with default provider.
|
ScaledOptions(IsDefaultScaledOptions defaultValues)
Creates the object only with default provider.
|
ScaledOptions(IsDefaultScaledOptions defaultValues,
NativeObject nativeObject)
Creates the object only with default provider and native object.
|