Package | Description |
---|---|
org.pepstock.charba.client |
Main package with all charts implementation, global classes and common interfaces.
|
org.pepstock.charba.client.callbacks |
All callbacks interfaces to be implemented.
|
org.pepstock.charba.client.configuration |
Contains all elements to configure a chart instance (know as chart options at instance level).
|
org.pepstock.charba.client.controllers |
Contains all classes to manage the implementations of controllers.
|
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.datalabels.callbacks |
Contains the DATALABELS plugin callback interfaces to configure the plugin itself.
|
org.pepstock.charba.client.datalabels.events |
Contains the DATALABELS plugin event handlers interfaces to configure the plugin itself.
|
org.pepstock.charba.client.events |
Contains all events to interact with chart instance.
|
org.pepstock.charba.client.impl.callbacks |
Contains some callbacks implementations, available out-of-the box.
|
org.pepstock.charba.client.impl.charts |
Contains METER and GAUGE charts implementations (based on controllers), available out-of-the box.
|
org.pepstock.charba.client.impl.plugins |
Contains some plugins implementations, available out-of-the box.
|
org.pepstock.charba.client.labels.callbacks |
Contains the LABELS plugin callback interfaces to configure the plugin itself.
|
org.pepstock.charba.client.plugins |
Contains all classes to manage the plugin implementations.
|
Modifier and Type | Class and Description |
---|---|
class |
BarChart
BAR chart implementation.
A bar chart provides a way of showing data values represented as vertical bars. It is sometimes used to show trend data, and the comparison of multiple data sets side by side. |
class |
BubbleChart
BUBBLE chart implementation.
A bubble chart is used to display three dimensions of data at the same time. The location of the bubble is determined by the first two dimensions and the corresponding horizontal and vertical axes. The third dimension is represented by the size of the individual bubbles. |
class |
DoughnutChart
DOUGHNUT chart implementation.
A doughnut charts are divided into segments, the arc of each segment shows the proportional value of each piece of data. |
class |
HorizontalBarChart
HORIZONTAL BAR chart implementation.
A horizontal bar chart is a variation on a bar chart. It is sometimes used to show trend data, and the comparison of multiple data sets side by side. |
class |
LineChart
LINE chart implementation.
A line chart is a way of plotting data points on a line. Often, it is used to show trend data, or the comparison of two data sets. |
class |
PieChart
PIE chart implementation.
A pie charts are divided into segments, the arc of each segment shows the proportional value of each piece of data. They are excellent at showing the relational proportions between data. |
class |
PolarAreaChart
POLAR AREA chart implementation.
Polar area charts are similar to pie charts, but each segment has the same angle - the radius of the segment differs depending on the value. This type of chart is often useful when we want to show a comparison data similar to a pie chart, but also show a scale of values for context. |
class |
RadarChart
RADAR chart implementation.
A radar chart is a way of showing multiple data points and the variation between them. They are often useful for comparing the points of two or more different data sets. |
class |
ScatterChart
SCATTER chart implementation.
Scatter charts are based on basic line charts with the x axis changed to a linear axis. To use a scatter chart, data must be passed as objects containing X and Y properties. |
class |
StackedAreaChart
STACKED AREA chart implementation.
A stacked area chart is a way of plotting data points on a line. Often, it is used to show trend data, or the comparison of two data sets. |
class |
StackedBarChart
STACKED BAR chart implementation.
Stacked bar charts can be configured like bar charts and changes the settings on the X and Y axes to enable stacking. Stacked bar charts can be used to show how one data series is made up of a number of smaller pieces. |
Modifier and Type | Method and Description |
---|---|
static AbstractChart<?,?> |
Charts.get(String chartId)
Returns the chart instance by its id.
|
Modifier and Type | Method and Description |
---|---|
void |
Controller.addElementAndReset(Context context,
AbstractChart<?,?> chart,
int index)
Create a single element for the data at the given index and reset its state.
|
void |
Controller.addElements(Context context,
AbstractChart<?,?> chart)
Create elements for each piece of data in the dataset.
|
void |
Controller.draw(Context context,
AbstractChart<?,?> chart,
double ease)
Draw the representation of the dataset.
|
void |
Controller.initialize(Context context,
AbstractChart<?,?> chart,
int datasetIndex)
Initializes the controller.
|
void |
ConfigurationElement.load(AbstractChart<?,?> chart,
Configuration configuration)
Called to enable to load into a configuration object the specific configuration item (by native object).
|
void |
Plugin.onAfterDatasetDraw(AbstractChart<?,?> chart,
DatasetPluginItem item)
Called after the 'chart' datasets at the given 'args.index' have been drawn (datasets are drawn in the reverse order).
|
void |
Plugin.onAfterDatasetsDraw(AbstractChart<?,?> chart,
double easing)
Called after the 'chart' datasets have been drawn.
|
void |
Plugin.onAfterDatasetsUpdate(AbstractChart<?,?> chart)
Called after the 'chart' datasets have been updated.
|
void |
Plugin.onAfterDatasetUpdate(AbstractChart<?,?> chart,
DatasetPluginItem item)
Called after the 'chart' datasets at the given 'args.index' has been updated.
|
void |
ChartsLifecycleListener.onAfterDestroy(AbstractChart<?,?> chart)
Called after the chart as been destroyed.
|
void |
AbstractChartsLifecycleListener.onAfterDestroy(AbstractChart<?,?> chart) |
void |
Plugin.onAfterDraw(AbstractChart<?,?> chart,
double easing)
Called after the 'chart' has been drawn for the specific easing value.
|
void |
Plugin.onAfterEvent(AbstractChart<?,?> chart,
ChartNativeEvent event)
Called after the 'event' has been consumed.
|
void |
Plugin.onAfterInit(AbstractChart<?,?> chart)
Called after 'chart' has been initialized and before the first update.
|
void |
ChartsLifecycleListener.onAfterInit(AbstractChart<?,?> chart)
Called after 'chart' has been initialized and before the first update.
|
void |
AbstractChartsLifecycleListener.onAfterInit(AbstractChart<?,?> chart) |
void |
Plugin.onAfterLayout(AbstractChart<?,?> chart)
Called after the 'chart' has been layed out.
|
void |
Plugin.onAfterRender(AbstractChart<?,?> chart)
Called after the 'chart' has been fully rendered (and animation completed).
|
void |
Plugin.onAfterTooltipDraw(AbstractChart<?,?> chart,
TooltipPluginItem item)
Called after drawing the 'tooltip'.
|
void |
Plugin.onAfterUpdate(AbstractChart<?,?> chart)
Called after 'chart' has been updated and before rendering.
|
boolean |
Plugin.onBeforeDatasetDraw(AbstractChart<?,?> chart,
DatasetPluginItem item)
Called before drawing the 'chart' dataset at the given 'args.index' (datasets are drawn in the reverse order).
|
boolean |
Plugin.onBeforeDatasetsDraw(AbstractChart<?,?> chart,
double easing)
Called before drawing the 'chart' datasets.
|
boolean |
Plugin.onBeforeDatasetsUpdate(AbstractChart<?,?> chart)
Called before updating the 'chart' datasets.
|
boolean |
Plugin.onBeforeDatasetUpdate(AbstractChart<?,?> chart,
DatasetPluginItem item)
Called before updating the 'chart' dataset at the given 'args.index'.
|
void |
ChartsLifecycleListener.onBeforeDestroy(AbstractChart<?,?> chart)
Called before the chart as been destroyed.
|
void |
AbstractChartsLifecycleListener.onBeforeDestroy(AbstractChart<?,?> chart) |
boolean |
Plugin.onBeforeDraw(AbstractChart<?,?> chart,
double easing)
Called before drawing 'chart' at every animation frame specified by the given easing value.
|
boolean |
Plugin.onBeforeEvent(AbstractChart<?,?> chart,
ChartNativeEvent event)
Called before processing the specified 'event'.
|
void |
Plugin.onBeforeInit(AbstractChart<?,?> chart)
Called before initializing 'chart'.
|
void |
ChartsLifecycleListener.onBeforeInit(AbstractChart<?,?> chart)
Called before initializing 'chart'.
|
void |
AbstractChartsLifecycleListener.onBeforeInit(AbstractChart<?,?> chart) |
boolean |
Plugin.onBeforeLayout(AbstractChart<?,?> chart)
Called before laying out 'chart'.
|
boolean |
Plugin.onBeforeRender(AbstractChart<?,?> chart)
Called before rendering 'chart'.
|
boolean |
Plugin.onBeforeTooltipDraw(AbstractChart<?,?> chart,
TooltipPluginItem item)
Called before drawing the 'tooltip'.
|
boolean |
Plugin.onBeforeUpdate(AbstractChart<?,?> chart)
Called before updating 'chart'.
|
void |
Plugin.onConfigure(AbstractChart<?,?> chart)
Called before initializing configuration of 'chart'.
|
void |
Plugin.onDestroy(AbstractChart<?,?> chart)
Called after the chart as been destroyed.
|
void |
Plugin.onResize(AbstractChart<?,?> chart,
SizeItem size)
Called after the chart as been resized.
|
void |
Controller.removeHoverStyle(Context context,
AbstractChart<?,?> chart,
StyleElement element)
Remove hover styling from the given element.
|
void |
Controller.setHoverStyle(Context context,
AbstractChart<?,?> chart,
StyleElement element)
Add hover styling to the given element.
|
void |
Controller.update(Context context,
AbstractChart<?,?> chart,
boolean reset)
Update the elements in response to new data.
|
Modifier and Type | Method and Description |
---|---|
void |
LegendCallback.generateLegend(AbstractChart<?,?> chart,
SafeHtmlBuilder builder)
Creates HTML representation of legend.
|
LegendLabelItem[] |
LegendLabelsCallback.generateLegendLabels(AbstractChart<?,?> chart)
Generates legend items for each thing in the legend.
|
String[] |
TooltipBodyCallback.onAfterBody(AbstractChart<?,?> chart,
List<TooltipItem> items)
Returns text to render after the body section.
|
String[] |
TooltipFooterCallback.onAfterFooter(AbstractChart<?,?> chart,
List<TooltipItem> items)
Text to render after the footer section.
|
String |
TooltipLabelCallback.onAfterLabel(AbstractChart<?,?> chart,
TooltipItem item)
Returns text to render after an individual label.
|
String[] |
TooltipTitleCallback.onAfterTitle(AbstractChart<?,?> chart,
List<TooltipItem> items)
Returns text to render after the title.
|
String[] |
TooltipBodyCallback.onBeforeBody(AbstractChart<?,?> chart,
List<TooltipItem> items)
Returns text to render before the body section.
|
String[] |
TooltipFooterCallback.onBeforeFooter(AbstractChart<?,?> chart,
List<TooltipItem> items)
Returns text to render before the footer section.
|
String |
TooltipLabelCallback.onBeforeLabel(AbstractChart<?,?> chart,
TooltipItem item)
Returns text to render before an individual label.
|
String[] |
TooltipTitleCallback.onBeforeTitle(AbstractChart<?,?> chart,
List<TooltipItem> items)
Returns the text to render before the title.
|
void |
TooltipCustomCallback.onCustom(AbstractChart<?,?> chart,
TooltipModel model)
Custom tooltips allow you to hook into the tooltip rendering process so that you can render the tooltip in your own
custom way.
|
String[] |
TooltipFooterCallback.onFooter(AbstractChart<?,?> chart,
List<TooltipItem> items)
Returns text to render as the footer of the tooltip.
|
int |
TooltipItemSortCallback.onItemSort(AbstractChart<?,?> chart,
TooltipItem item1,
TooltipItem item2)
Allows sorting of tooltip items.
|
String |
TooltipLabelCallback.onLabel(AbstractChart<?,?> chart,
TooltipItem item)
Returns text to render for an individual item in the tooltip.
|
TooltipLabelColor |
TooltipLabelCallback.onLabelColor(AbstractChart<?,?> chart,
TooltipItem item)
Returns the colors to render for the tooltip item.
|
IsColor |
TooltipLabelCallback.onLabelTextColor(AbstractChart<?,?> chart,
TooltipItem item)
Returns the colors for the text of the label for the tooltip item.
|
String[] |
TooltipTitleCallback.onTitle(AbstractChart<?,?> chart,
List<TooltipItem> items)
Returns text to render as the title of the tooltip.
|
Modifier and Type | Method and Description |
---|---|
void |
ConfigurationOptions.load(AbstractChart<?,?> chart,
Configuration configuration) |
Constructor and Description |
---|
AbstractPieOptions(AbstractChart<?,?> chart,
ChartOptions defaultvalues)
Builds the object storing the chart instance and defaults.
|
BarCategoryAxis(AbstractChart<?,?> chart)
Builds the object storing the chart instance.
|
BarOptions(AbstractChart<?,?> chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
BubbleOptions(AbstractChart<?,?> chart,
ChartOptions defaultValues)
Builds the object storing the chart instance.
|
CartesianCategoryAxis(AbstractChart<?,?> chart)
Builds the object storing the chart instance.
|
CartesianCategoryAxis(AbstractChart<?,?> chart,
CartesianAxisType cartesianType)
Builds the object storing the chart instance and axis type.
|
CartesianLinearAxis(AbstractChart<?,?> chart)
Builds the object storing the chart instance.
|
CartesianLinearAxis(AbstractChart<?,?> chart,
CartesianAxisType cartesianType)
Builds the object storing the chart instance and axis type.
|
CartesianLogarithmicAxis(AbstractChart<?,?> chart)
Builds the object storing the chart instance.
|
CartesianLogarithmicAxis(AbstractChart<?,?> chart,
CartesianAxisType cartesianType)
Builds the object storing the chart instance and axis type.
|
CartesianTimeAxis(AbstractChart<?,?> chart)
Builds the object storing the chart instance.
|
CartesianTimeAxis(AbstractChart<?,?> chart,
CartesianAxisType cartesianType)
Builds the object storing the chart instance and axis type.
|
DoughnutOptions(AbstractChart<?,?> chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default options.
|
LineOptions(AbstractChart<?,?> chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
PieOptions(AbstractChart<?,?> chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
PolarAreaOptions(AbstractChart<?,?> chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
RadarOptions(AbstractChart<?,?> chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
RadialAxis(AbstractChart<?,?> chart)
Builds the object storing the chart instance.
|
ScatterOptions(AbstractChart<?,?> chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
SingleScaleOptions(AbstractChart<?,?> chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
StackedOptions(AbstractChart<?,?> chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and default values.
|
StackedOptions(AbstractChart<?,?> chart,
ChartOptions defaultValues,
boolean onlyYScaled)
Builds the object storing the chart instance, default values and if only Y axis is scaled.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractController.addElementAndReset(Context context,
AbstractChart<?,?> chart,
int index) |
void |
AbstractController.addElements(Context context,
AbstractChart<?,?> chart) |
void |
AbstractController.draw(Context context,
AbstractChart<?,?> chart,
double ease) |
void |
AbstractController.initialize(Context context,
AbstractChart<?,?> chart,
int datasetIndex) |
void |
AbstractController.removeHoverStyle(Context context,
AbstractChart<?,?> chart,
StyleElement element) |
void |
AbstractController.setHoverStyle(Context context,
AbstractChart<?,?> chart,
StyleElement element) |
void |
AbstractController.update(Context context,
AbstractChart<?,?> chart,
boolean reset) |
Modifier and Type | Method and Description |
---|---|
static CanvasGradient |
CanvasObjectFactory.createGradient(AbstractChart<?,?> chart,
Gradient gradient,
int datasetIndex,
int index)
Creates a GWT canvas gradient java script object using a Charba gradient and a chart instance which must provide a canvas
instance and its context.
|
static CanvasPattern |
CanvasObjectFactory.createPattern(AbstractChart<?,?> chart,
Pattern pattern)
Creates a GWT canvas pattern java script object using a Charba pattern and a chart instance which must provide a canvas
instance and its context.
|
void |
Data.load(AbstractChart<?,?> chart,
Configuration configuration) |
Modifier and Type | Method and Description |
---|---|
Align |
AlignCallback.align(AbstractChart<?,?> chart,
Context context)
Returns the
align property at runtime, using the chart instance and the plugin context. |
Anchor |
AnchorCallback.anchor(AbstractChart<?,?> chart,
Context context)
Returns the
anchor property at runtime, using the chart instance and the plugin context. |
T |
BackgroundColorCallback.backgroundColor(AbstractChart<?,?> chart,
Context context)
Returns the
backgroundColor property at runtime, using the chart instance and the plugin context. |
T |
BorderColorCallback.borderColor(AbstractChart<?,?> chart,
Context context)
Returns the
borderColor property at runtime, using the chart instance and the plugin context. |
double |
BorderRadiusCallback.borderRadius(AbstractChart<?,?> chart,
Context context)
Returns the
borderRadius property at runtime, using the chart instance and the plugin context. |
int |
BorderWidthCallback.borderWidth(AbstractChart<?,?> chart,
Context context)
Returns the
borderWidth property at runtime, using the chart instance and the plugin context. |
boolean |
ClampCallback.clamp(AbstractChart<?,?> chart,
Context context)
Returns the
clamp property at runtime, using the chart instance and the plugin context. |
boolean |
ClipCallback.clip(AbstractChart<?,?> chart,
Context context)
Returns the
clip property at runtime, using the chart instance and the plugin context. |
T |
ColorCallback.color(AbstractChart<?,?> chart,
Context context)
Returns the
color property at runtime, using the chart instance and the plugin context. |
Display |
DisplayCallback.display(AbstractChart<?,?> chart,
Context context)
Returns the
display property at runtime, using the chart instance and the plugin context. |
Font |
FontCallback.font(AbstractChart<?,?> chart,
Context context)
Returns the font element at runtime, using the chart instance and the plugin context.
|
String |
FormatterCallback.format(AbstractChart<?,?> chart,
double value,
Context context)
Returns the
formatter property at runtime, using the chart instance and the plugin context. |
double |
OffsetCallback.offset(AbstractChart<?,?> chart,
Context context)
Returns the
offset property at runtime, using the chart instance and the plugin context. |
double |
OpacityCallback.opacity(AbstractChart<?,?> chart,
Context context)
Returns the
opacity property at runtime, using the chart instance and the plugin context. |
Padding |
PaddingCallback.padding(AbstractChart<?,?> chart,
Context context)
Returns the padding element at runtime, using the chart instance and the plugin context.
|
double |
RotationCallback.rotation(AbstractChart<?,?> chart,
Context context)
Returns the
rotation property at runtime, using the chart instance and the plugin context. |
TextAlign |
TextAlignCallback.textAlign(AbstractChart<?,?> chart,
Context context)
Returns the
textAlign property at runtime, using the chart instance and the plugin context. |
double |
TextShadowBlurCallback.textShadowBlur(AbstractChart<?,?> chart,
Context context)
Returns the
textShadowBlur property at runtime, using the chart instance and the plugin context. |
T |
TextShadowColorCallback.textShadowColor(AbstractChart<?,?> chart,
Context context)
Returns the
textShadowColor property at runtime, using the chart instance and the plugin context. |
T |
TextStrokeColorCallback.textStrokeColor(AbstractChart<?,?> chart,
Context context)
Returns the
textStrokeColor property at runtime, using the chart instance and the plugin context. |
int |
TextStrokeWidthCallback.textStrokeWidth(AbstractChart<?,?> chart,
Context context)
Returns the
textStrokeWidth property at runtime, using the chart instance and the plugin context. |
Modifier and Type | Method and Description |
---|---|
boolean |
ClickEventHandler.onClick(AbstractChart<?,?> chart,
Context context)
Invoked to manage CLICK events on labels.
|
boolean |
AbstractEventHandler.onClick(AbstractChart<?,?> chart,
Context context) |
boolean |
EnterEventHandler.onEnter(AbstractChart<?,?> chart,
Context context)
Invoked to manage ENTER events on labels.
|
boolean |
AbstractEventHandler.onEnter(AbstractChart<?,?> chart,
Context context) |
boolean |
LeaveEventHandler.onLeave(AbstractChart<?,?> chart,
Context context)
Invoked to manage LEAVE events on labels.
|
boolean |
AbstractEventHandler.onLeave(AbstractChart<?,?> chart,
Context context) |
Modifier and Type | Method and Description |
---|---|
AbstractChart<?,?> |
DatasetSelectionEvent.getChart() |
AbstractChart<?,?> |
AbstractEvent.getChart()
Returns the chart instance, stored in the event as source.
|
Constructor and Description |
---|
DatasetSelectionEvent(NativeEvent nativeEvent,
AbstractChart<?,?> chart,
DatasetItem item)
Creates the event with dataset metadata item related to the click and the chart instance
|
Modifier and Type | Method and Description |
---|---|
static double |
Percentage.compute(AbstractChart<?,?> chart,
double value,
Context context)
Computes the percentage of the value based on the data of datasets.
|
static double |
Percentage.compute(AbstractChart<?,?> chart,
double value,
Context context,
boolean stacked)
Computes the percentage of the value based on the data of datasets.
|
String |
PercentageCallback.format(AbstractChart<?,?> chart,
double value,
Context context) |
boolean |
DataLabelsSelectionHandler.onClick(AbstractChart<?,?> chart,
Context context) |
boolean |
DataLabelsPointerHandler.onClick(AbstractChart<?,?> chart,
Context context) |
boolean |
DataLabelsPointerHandler.onEnter(AbstractChart<?,?> chart,
Context context) |
boolean |
DataLabelsPointerHandler.onLeave(AbstractChart<?,?> chart,
Context context) |
Modifier and Type | Class and Description |
---|---|
class |
GaugeChart
GAUGE chart implementation.
|
class |
MeterChart
METER chart implementation.
|
Constructor and Description |
---|
GaugeOptions(AbstractChart<?,?> chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and defaults.
|
MeterOptions(AbstractChart<?,?> chart,
ChartOptions defaultValues)
Builds the object storing the chart instance and defaults.
|
Modifier and Type | Method and Description |
---|---|
void |
DatasetsItemsSelector.clearSelection(AbstractChart<?,?> chart)
Clears the selection on the chart.
|
void |
DatasetsItemsSelector.clearSelection(AbstractChart<?,?> chart,
boolean fireEvent)
Clears the selection on the chart and set if an event should fire on clear action.
|
double |
DatasetsItemsSelector.getPadding(AbstractChart<?,?> chart)
Returns the padding height used by clear selection element if enabled.
This is very helpful when you have added padding for your purposes and you need to know the amount of space that the element allocated. |
void |
DatasetsItemsSelector.onAfterDraw(AbstractChart<?,?> chart,
double easing) |
void |
ChartBackgroundColor.onAfterDraw(AbstractChart<?,?> chart,
double easing) |
void |
ChartPointer.onAfterEvent(AbstractChart<?,?> chart,
ChartNativeEvent event) |
void |
ChartPointer.onAfterInit(AbstractChart<?,?> chart) |
boolean |
ChartBackgroundColor.onBeforeDraw(AbstractChart<?,?> chart,
double easing) |
boolean |
DatasetsItemsSelector.onBeforeEvent(AbstractChart<?,?> chart,
ChartNativeEvent event) |
void |
DatasetsItemsSelector.onConfigure(AbstractChart<?,?> chart) |
void |
DatasetsItemsSelector.onDestroy(AbstractChart<?,?> chart) |
void |
ChartBackgroundColor.onDestroy(AbstractChart<?,?> chart) |
void |
ChartBackgroundColor.onResize(AbstractChart<?,?> chart,
SizeItem size) |
void |
DatasetsItemsSelector.skipNextRefreshFireEvent(AbstractChart<?,?> chart)
Sets a flag to skip to send event after refresh.
|
Modifier and Type | Method and Description |
---|---|
T |
FontColorCallback.color(AbstractChart<?,?> chart,
FontColorItem item)
Called to change font color at runtime, using the arguments.
|
T |
RenderCallback.render(AbstractChart<?,?> chart,
RenderItem item)
Called to provide the item to be rendered as string or as image at runtime, using the arguments.
|
Modifier and Type | Method and Description |
---|---|
void |
Plugins.load(AbstractChart<?,?> chart,
Configuration configuration) |
void |
AbstractPlugin.onAfterDatasetDraw(AbstractChart<?,?> chart,
DatasetPluginItem item) |
void |
AbstractPlugin.onAfterDatasetsDraw(AbstractChart<?,?> chart,
double easing) |
void |
AbstractPlugin.onAfterDatasetsUpdate(AbstractChart<?,?> chart) |
void |
AbstractPlugin.onAfterDatasetUpdate(AbstractChart<?,?> chart,
DatasetPluginItem item) |
void |
AbstractPlugin.onAfterDraw(AbstractChart<?,?> chart,
double easing) |
void |
AbstractPlugin.onAfterEvent(AbstractChart<?,?> chart,
ChartNativeEvent event) |
void |
AbstractPluginOptionsFactory.onAfterInit(AbstractChart<?,?> chart) |
void |
AbstractPlugin.onAfterInit(AbstractChart<?,?> chart) |
void |
AbstractPlugin.onAfterLayout(AbstractChart<?,?> chart) |
void |
AbstractPlugin.onAfterRender(AbstractChart<?,?> chart) |
void |
AbstractPlugin.onAfterTooltipDraw(AbstractChart<?,?> chart,
TooltipPluginItem item) |
void |
AbstractPlugin.onAfterUpdate(AbstractChart<?,?> chart) |
boolean |
AbstractPlugin.onBeforeDatasetDraw(AbstractChart<?,?> chart,
DatasetPluginItem item) |
boolean |
AbstractPlugin.onBeforeDatasetsDraw(AbstractChart<?,?> chart,
double easing) |
boolean |
AbstractPlugin.onBeforeDatasetsUpdate(AbstractChart<?,?> chart) |
boolean |
AbstractPlugin.onBeforeDatasetUpdate(AbstractChart<?,?> chart,
DatasetPluginItem item) |
void |
AbstractPluginOptionsFactory.onBeforeDestroy(AbstractChart<?,?> chart) |
boolean |
AbstractPlugin.onBeforeDraw(AbstractChart<?,?> chart,
double easing) |
boolean |
AbstractPlugin.onBeforeEvent(AbstractChart<?,?> chart,
ChartNativeEvent event) |
void |
AbstractPlugin.onBeforeInit(AbstractChart<?,?> chart) |
boolean |
AbstractPlugin.onBeforeLayout(AbstractChart<?,?> chart) |
boolean |
AbstractPlugin.onBeforeRender(AbstractChart<?,?> chart) |
boolean |
AbstractPlugin.onBeforeTooltipDraw(AbstractChart<?,?> chart,
TooltipPluginItem item) |
boolean |
AbstractPlugin.onBeforeUpdate(AbstractChart<?,?> chart) |
void |
Plugins.onChartConfigure(Configuration config,
AbstractChart<?,?> chart)
Invokes the on configuration method to inform the plugins that the chart is going to be initialized.
|
void |
GlobalPlugins.onChartConfigure(Configuration config,
AbstractChart<?,?> chart)
Invokes the on configuration method to inform the plugins that the chart is going to be initialized.
|
void |
AbstractPlugin.onConfigure(AbstractChart<?,?> chart) |
void |
AbstractPlugin.onDestroy(AbstractChart<?,?> chart) |
void |
AbstractPlugin.onResize(AbstractChart<?,?> chart,
SizeItem size) |
Constructor and Description |
---|
Plugins(AbstractChart<?,?> chart)
Builds the object storing the chart instance.
|