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.impl.charts |
Contains METER and GAUGE charts implementations (based on controllers), available out-of-the box.
|
Modifier and Type | Method and Description |
---|---|
protected ChartOptions |
AbstractChart.createChartOptions()
Creates the chart options based on type of chart.
It can be override when a controller is implemented. |
ChartOptions |
IsChart.getDefaultChartOptions()
Returns the default options created based on chart type.
|
ChartOptions |
AbstractChart.getDefaultChartOptions()
Returns the default options created based on chart type.
|
ChartOptions |
Defaults.getOptions(Type type)
Returns the default options by a chart type, by defaults of CHART.JS.
|
Constructor and Description |
---|
AbstractPieOptions(IsChart chart,
ChartOptions defaultvalues)
Builds the object storing the chart instance and defaults.
|
BarOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
BubbleOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance.
|
DoughnutOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default options.
|
LineOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
PieOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
PolarAreaOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
RadarOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
ScatterOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
SingleScaleOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
StackedOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
StackedOptions(IsChart chart,
ChartOptions defaultValues,
boolean onlyYScaled)
Builds the object storing the chart instance, default values and if only Y axis is scaled.
|
TimeSeriesBarOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
TimeSeriesLineOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
Constructor and Description |
---|
DefaultChartOptions(ChartOptions chartOptions)
Creates the object by options element instance.
|
Constructor and Description |
---|
GaugeOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and defaults.
|
MeterOptions(IsChart chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and defaults.
|