Package | Description |
---|---|
org.pepstock.charba.client |
Main package with all charts implementation, global classes and common interfaces.
|
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.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractChart<D extends Dataset>
Base class of all charts.
It contains Chart.js initialization. |
Modifier and Type | Class and Description |
---|---|
class |
BarDataset
The bar chart allows a number of properties to be specified for each dataset.
|
class |
BubbleDataset
The chart allows a number of properties to be specified for each dataset.
|
class |
DoughnutDataset
The doughnut chart allows a number of properties to be specified for each dataset.
|
class |
HovingDataset
The chart allows a number of properties to be specified for each dataset.
|
class |
HovingFlexDataset
This dataset is managing some common properties related to background and border colors where every property can be set as a
single value or an array.
|
class |
LineDataset
The line chart allows a number of properties to be specified for each dataset.
|
class |
LiningDataset
The chart allows a number of properties to be specified for each dataset.
These are used to set display properties for a specific dataset. This class collects a set of common field for Line and Radar charts. |
class |
PieDataset
The pie chart allows a number of properties to be specified for each dataset.
|
class |
PolarAreaDataset
The polar area chart allows a number of properties to be specified for each dataset.
|
class |
RadarDataset
The radar chart allows a number of properties to be specified for each dataset.
|
class |
ScatterDataset
The scatter chart allows a number of properties to be specified for each dataset.
|
class |
StackedAreaDataset
The stacked area chart allows a number of properties to be specified for each dataset.
|
class |
StackedBarDataset
The stacked bar area chart allows a number of properties to be specified for each dataset.
|
class |
TimeSeriesBarDataset
The time series bar chart allows a number of properties to be specified for each dataset.
|
class |
TimeSeriesLineDataset
The time series line chart allows a number of properties to be specified for each dataset.
|
Modifier and Type | Method and Description |
---|---|
Dataset |
HasDataset.getDataset()
Gets the dataset instance.
|
Dataset |
Dataset.getDataset() |
Modifier and Type | Method and Description |
---|---|
List<Dataset> |
Data.getDatasets()
Returns the list of datasets.
|
List<Dataset> |
Data.getDatasets(boolean binding)
Returns the list of datasets.
|
Modifier and Type | Method and Description |
---|---|
void |
Data.setDatasets(Dataset... datasets)
Sets a set of datasets for chart.
|
Modifier and Type | Class and Description |
---|---|
class |
GaugeDataset
The Gauge chart allows a number of properties to be specified for each dataset.
|
class |
MeterDataset
The Meter chart allows a number of properties to be specified for each dataset.
|