Interface | Description |
---|---|
Controller |
This interface enables the capability to create a custom chart.
|
IsChart<O extends BaseOptions,D extends Dataset> |
Interface which defines a chart.
|
Plugin |
This interface is defining the extension hook for Chart.JS plugin implementation (both for inline and global plugins).
Plugins are the most efficient way to customize or change the default behavior of a chart. |
Type |
Interface to set the type of a chart.
|
Class | Description |
---|---|
AbstractChart<O extends BaseOptions,D extends Dataset> |
Base class of all charts.
It contains Chart.js initialization. |
BarChart |
BAR chart implementation.
|
BubbleChart |
BUBBLE chart implementation.
|
Charts |
Is a static reference which collects all chart instances to be able to enable global plugins.
|
Defaults |
Is a singleton which is mapping the default of CHART.JS.
It maps the CHART.JS object of default, chart.defaults . |
DoughnutChart |
DOUGHNUT chart implementation.
|
GaugeChart |
GAUGE chart implementation.
|
GlobalOptions |
Contains the GLOBAL options for a specific chart instance.
Loaded when a new chart instance is created. It's the result of merging of different global options. |
HorizontalBarChart |
HORIZONTAL BAR chart implementation.
|
Injector |
This utility injects ChartJS javascript into the web page of GWT.
If ChartJS is already injected, it does nothing. It enables also to inject other script into web page, necessary when you want to use some Chart.JS plugins. |
LineChart |
LINE chart implementation.
|
MeterChart |
METER chart implementation.
|
PieChart |
PIE chart implementation.
|
PolarAreaChart |
POLAR AREA chart implementation.
|
RadarChart |
RADAR chart implementation.
|
ScatterChart |
SCATTER chart implementation.
|
StackedAreaChart |
STACKED AREA chart implementation.
|
StackedBarChart |
STACKED BAR chart implementation.
|
UpdateConfiguration |
Object can be provided with additional configuration for the update/render process.
This is useful when update is manually called inside an event handler and some different animation is desired. |
Enum | Description |
---|---|
ChartType |
Enumerates all possible available types of a chart.
|