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.gwt.widgets |
Contains all charts classes wrapped as GWT widget in order to enable to use inside to GWT UIBinder.
|
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 |
GlobalOptions.asDefault()
Returns the global options as default scaled options.
|
IsDefaultScaledOptions |
AbstractChart.getDefaultChartOptions()
Returns the default options created based on chart type.
|
IsDefaultScaledOptions |
IsChart.getDefaultChartOptions()
Returns the default options created based on chart type.
|
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() . |
IsDefaultScaledOptions |
IsChart.getWholeOptions()
Returns the default options by a chart instance, merging global, chart type global and chart options.
|
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.
|
ConfigurationOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and defaults options.
|
DoughnutOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default options.
|
HorizontalBarOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.
|
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.
|
ScalesOptions(IsChart chart,
IsDefaultScaledOptions defaultValues)
Builds the object storing the chart instance and default values.
|
ScalesOptions(IsChart chart,
IsDefaultScaledOptions defaultValues,
boolean createScale)
Builds the object storing the chart instance and default values and creating a scale options if requested.
|
ScatterOptions(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.
|
VerticalLineOptions(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.
THIS IS THE ROOT OF ALL ELEMENTS DEFAULTS. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultScaledOptions
CHART.JS default values for OPTIONS element for scaled charts.
|
Modifier and Type | Method and Description |
---|---|
IsDefaultScaledOptions |
AbstractChartWidget.getDefaultChartOptions() |
IsDefaultScaledOptions |
AbstractChartWidget.getWholeOptions() |
Modifier and Type | Class and Description |
---|---|
class |
OptionsNode
Wrapper of options node of CHART.JS.
|
Constructor and Description |
---|
OptionsNode(String chartId,
IsDefaultScaledOptions defaultValues,
ChartEnvelop<NativeObject> envelop)
Creates the item using an envelop with the native java script object which contains all properties.
|
Modifier and Type | Class and Description |
---|---|
class |
ExtendedOptions
Options used internally inside the chart configuration.
This is the root element of configuration. Extends the normal options (with scales) with all methods to add callbacks and events. It provides also the method to set the CHARBA id when new chart is created. |
class |
ScaledOptions
Base object which maps chart options, with scales elements to set axes configurations.
|
Constructor and Description |
---|
ExtendedOptions(IsChart chart,
IsDefaultScaledOptions defaultValues,
ChartEnvelop<NativeObject> envelop)
Creates an options with default provider.
|
ExtendedOptions(IsChart chart,
IsDefaultScaledOptions defaultValues,
ConfigurationEnvelop<NativeObject> envelop)
Creates an options with default provider.
|
ScaledOptions(String scope,
IsDefaultScaledOptions defaultValues)
Creates the object only with default provider.
|
ScaledOptions(String scope,
IsDefaultScaledOptions defaultValues,
NativeObject nativeObject,
boolean createScales)
Creates the object only with default provider and native object.
|