See: Description
Interface | Description |
---|---|
AxisBuildTicksCallback |
Interface to be implemented which can be used to change parameters in the scale during ticks building.
|
AxisCalculateTickRotationCallback |
Interface to be implemented which can be used to change parameters in the scale during tick rotation.
|
AxisDataLimitsCallback |
Interface to be implemented which can be used to change parameters in the scale during data limits determination.
|
AxisDimensionsCallback |
Interface to be implemented which can be used to change parameters in the scale during setting dimensions.
|
AxisFitCallback |
Interface to be implemented which can be used to change parameters in the scale during fitting phase.
|
AxisTickToLabelConversionCallback |
Interface to be implemented which can be used to change parameters in the scale during ticks label conversion.
|
AxisUpdateCallback |
Interface to be implemented which can be used to change parameters in the scale during updating.
|
BackgroundColorCallback |
Callback interface to set
backgroundColor , hoverBackgroundColor , pointBackgroundColor
or pointHoverBackgroundColor property at runtime, using the chart instance and the context. |
BaseAxisBuildTicksCallback |
Interface to be implemented which can be used to change parameters in the scale before ticks building.
This is the base class for axis build ticks callbacks. |
BorderAlignCallback |
Callback interface to set
borderAlign property at runtime, using the chart instance and the context. |
BorderCapStyleCallback |
Callback interface to set
borderCapStyle property at runtime, using the chart instance and the context. |
BorderColorCallback |
Callback interface to set
borderColor , hoverBorderColor , pointBorderColor or
pointHoverBorderColor property at runtime, using the chart instance and the context. |
BorderDashCallback |
Callback interface to set
borderDash property at runtime, using the chart instance and the context. |
BorderDashOffsetCallback |
Callback interface to set
borderDashOffset property at runtime, using the chart instance and the context. |
BorderJoinStyleCallback |
Callback interface to set
borderJoinStyle property at runtime, using the chart instance and the context. |
BorderSkippedCallback |
Callback interface to set
borderSkipped property at runtime, using the chart instance and the context. |
BorderWidthCallback |
Callback interface to set
borderWidth , hoverBorderWidth , pointBorderWidth or
pointHoverBorderWidth property at runtime, using the chart instance and the context. |
CategoryAxisBuildTicksCallback |
Interface to be implemented which can be used to change parameters in the scale during ticks building, for
CartesianCategoryAxis . |
CategoryTickCallback |
Interface to implement if wants to change the tick marks to include information about the data type, for cartesian category
axes.
|
CubicInterpolationModeCallback |
Callback interface to set
cubicInterpolationMode property at runtime, using the chart instance and the context. |
FillCallback |
Callback interface to set
fill property at runtime, using the chart instance and the context.The result object can have one of following type: Fill
Boolean
Integer for AbsoluteDatasetIndexFill
String for RelativeDatasetIndexFill
|
LegendCallback |
Sometimes you need a very complex legend.
|
LegendFilterCallback |
Filters legend items out of the legend.
|
LegendLabelsCallback |
Generates legend items for each thing in the legend.
|
PointStyleCallback |
Callback interface to set
pointStyle property at runtime, using the chart instance and the context. |
RadialPointLabelCallback |
Callback function to transform data labels to point labels.
|
RadiusCallback |
Callback interface to set
radius or pointRadius (hit and hover) property at runtime, using the
chart instance and the context. |
RotationCallback |
Callback interface to set
rotation or pointRotation property at runtime, using the chart instance
and the context. |
Scriptable<T> |
Interface to map all callback of scriptable options available for CHART.JS.
|
ScriptableFunctions.ProxyArrayCallback |
Java script FUNCTION callback called to provide an array property.
|
ScriptableFunctions.ProxyBooleanCallback |
Java script FUNCTION callback called to provide a boolean property.
|
ScriptableFunctions.ProxyDoubleCallback |
Java script FUNCTION callback called to provide a double property.
|
ScriptableFunctions.ProxyIntegerCallback |
Java script FUNCTION callback called to provide a integer property.
|
ScriptableFunctions.ProxyNativeObjectCallback |
Java script FUNCTION callback called to provide a native object property.
|
ScriptableFunctions.ProxyObjectCallback |
Java script FUNCTION callback called to provide a object property.
|
ScriptableFunctions.ProxyStringCallback |
Java script FUNCTION callback called to provide a string property.
|
TickCallback |
Interface to implement if wants to change the tick marks to include information about the data type, for axes which are
showing data as numbers.
|
TimeAxisBuildTicksCallback |
Interface to be implemented which can be used to change parameters in the scale during ticks building, for
CartesianTimeAxis . |
TimeTickCallback |
Interface to implement if wants to change the tick marks to include information about the data type, for cartesian time axes.
|
TooltipBodyCallback |
The tooltip label configuration is nested below the tooltip configuration using the callbacks key.
The tooltip has the following callbacks for providing text. All functions must return either a string or an array of strings. |
TooltipCustomCallback |
Custom tooltips allow you to hook into the tooltip rendering process so that you can render the tooltip in your own custom
way.
Generally this is used to create an HTML tooltip instead of an on canvas one. |
TooltipFilterCallback |
Allows filtering of tooltip items.
|
TooltipFooterCallback |
The tooltip label configuration is nested below the tooltip configuration using the callbacks key.
The tooltip has the following callbacks for providing text. All functions must return either a string or an array of strings. |
TooltipItemSortCallback |
Allows sorting of tooltip items.
|
TooltipLabelCallback |
The tooltip label configuration is nested below the tooltip configuration using the callbacks key.
The tooltip has the following callbacks for providing text. All functions must return either a string or an array of strings. |
TooltipTitleCallback |
The tooltip label configuration is nested below the tooltip configuration using the callbacks key.
The tooltip has the following callbacks for providing text. All functions must return either a string or an array of strings. |
Class | Description |
---|---|
AbstractTooltipBodyCallback |
Abstract implementation of tooltip body callback in order to help who will implement it to override ONLY needed methods and
use the default for the others.
|
AbstractTooltipFooterCallback |
Abstract implementation of tooltip footer callback in order to help who will implement it to override ONLY needed methods and
use the default for the others.
|
AbstractTooltipLabelCallback |
Abstract implementation of tooltip label callback in order to help who will implement it to override ONLY needed methods and
use the default for the others.
|
AbstractTooltipTitleCallback |
Abstract implementation of tooltip title callback in order to help who will implement it to override ONLY needed methods and
use the default for the others.
|
ScriptableContext |
The option context is used to give contextual information when resolving options.
The context object contains the following properties: index(int): index of the associated data datasetIndex(int): index of the associated dataset active(boolean): if the data and dataset item is hovered. |
ScriptableFunctions |
Set of common JSINTEROP functions (mapped as interfaces) to be able to implement scriptable options of CHART.JS.
|
ScriptableUtils |
Sets of common methods as utilities to manage scriptable options by callback and java interfaces.
|