Package | Description |
---|---|
org.pepstock.charba.client.configuration |
Contains all elements to configure a chart instance (know as chart options at instance level).
|
org.pepstock.charba.client.data |
Contains all elements to configure the datasets of a chart instance (know as chart data at instance level).
|
org.pepstock.charba.client.impl.charts |
Contains METER and GAUGE charts implementations (based on controllers), available out-of-the box.
|
org.pepstock.charba.client.plugins |
Contains all classes to manage the plugin implementations.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractPieOptions
Abstract options for PIE chart.
|
class |
BarOptions
Specific options for BAR chart.
|
class |
BubbleOptions
Specific options for BUBBLE chart.
|
class |
ConfigurationOptions
Base object which maps chart configuration.
Charba stores the unique chart ID into CHART.JS chart options using charbaId property key.Important topics to take care: Responsive When it comes to change the chart size based on the window size, a major limitation is that the canvas render size (canvas.width and .height) can not be expressed with relative values, contrary to the display size (canvas.style.width and .height). |
class |
DoughnutOptions
Specific options for DOUGHNUT chart.
|
class |
LineOptions
Specific options for LINE chart.
|
class |
PieOptions
Specific options for PIE chart.
|
class |
PolarAreaOptions
Specific options for POLAR AREA chart.
|
class |
RadarOptions
Specific options for RADAR chart.
|
class |
ScatterOptions
Specific options for SCATTER chart.
|
class |
SingleScaleOptions
Configuration of chart with only 1 scale.
|
class |
StackedOptions
Configuration of chart which could be stacked.
It uses Category axis for X axis and Linear for Y axis. |
Modifier and Type | Class and Description |
---|---|
class |
Data
CHART.JS entity object to configure the data options of a chart.
It contains labels and datasets. |
Modifier and Type | Class and Description |
---|---|
class |
GaugeOptions
Specific options for GAUGE chart.
|
class |
MeterOptions
Specific options for METER chart.
|
Modifier and Type | Class and Description |
---|---|
class |
Plugins
Is the manager of plugins which can manage the list of plugins and returns them as java script object to store into chart
configuration.
|