Uses of Interface
org.pepstock.charba.client.callbacks.RadiusCallback
-
Packages that use RadiusCallback Package Description org.pepstock.charba.client.annotation Contains all classes to activate theAnnotationPlugin.ID
plugin (AKAchartjs-plugin-annotation.js
) for CHART.js.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.datalabels Contains all classes to activate theDataLabelsPlugin.ID
plugin (AKAchartjs-plugin-datalabels.js
) for CHART.js. -
-
Uses of RadiusCallback in org.pepstock.charba.client.annotation
Methods in org.pepstock.charba.client.annotation that return RadiusCallback Modifier and Type Method Description RadiusCallback<AnnotationContext>
PointAnnotation. getRadiusCallback()
Returns the callback called to set the radius.Methods in org.pepstock.charba.client.annotation with parameters of type RadiusCallback Modifier and Type Method Description void
PointAnnotation. setRadius(RadiusCallback<AnnotationContext> radiusCallback)
Sets the callback to set the radius. -
Uses of RadiusCallback in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return RadiusCallback Modifier and Type Method Description RadiusCallback<DatasetContext>
Point. getHitRadiusCallback()
Returns the hit radius callback, if set, otherwisenull
.RadiusCallback<DatasetContext>
Point. getHoverRadiusCallback()
Returns the hover radius callback, if set, otherwisenull
.RadiusCallback<DatasetContext>
Point. getRadiusCallback()
Returns the radius callback, if set, otherwisenull
.Methods in org.pepstock.charba.client.configuration with parameters of type RadiusCallback Modifier and Type Method Description void
Point. setHitRadius(RadiusCallback<DatasetContext> hitRadiusCallback)
Sets the hit radius callback.void
Point. setHoverRadius(RadiusCallback<DatasetContext> hoverRadiusCallback)
Sets the hover radius callback.void
Point. setRadius(RadiusCallback<DatasetContext> radiusCallback)
Sets the radius callback. -
Uses of RadiusCallback in org.pepstock.charba.client.data
Methods in org.pepstock.charba.client.data that return RadiusCallback Modifier and Type Method Description RadiusCallback<DatasetContext>
BubbleDataset. getHitRadiusCallback()
Returns the hit radius callback, if set, otherwisenull
.RadiusCallback<DatasetContext>
BubbleDataset. getHoverRadiusCallback()
Returns the hover radius callback, if set, otherwisenull
.RadiusCallback<DatasetContext>
LiningDataset. getPointHitRadiusCallback()
Returns the point hit radius callback, if set, otherwisenull
.RadiusCallback<DatasetContext>
LiningDataset. getPointHoverRadiusCallback()
Returns the point hover radius callback, if set, otherwisenull
.RadiusCallback<DatasetContext>
LiningDataset. getPointRadiusCallback()
Returns the point radius callback, if set, otherwisenull
.RadiusCallback<DatasetContext>
BubbleDataset. getRadiusCallback()
Returns the radius callback, if set, otherwisenull
.Methods in org.pepstock.charba.client.data with parameters of type RadiusCallback Modifier and Type Method Description void
BubbleDataset. setHitRadius(RadiusCallback<DatasetContext> hitRadiusCallback)
Sets the hit radius callback.void
BubbleDataset. setHoverRadius(RadiusCallback<DatasetContext> hoverRadiusCallback)
Sets the hover radius callback.void
LiningDataset. setPointHitRadius(RadiusCallback<DatasetContext> pointHitRadiusCallback)
Sets the point hit radius callback.void
LiningDataset. setPointHoverRadius(RadiusCallback<DatasetContext> pointHoverRadiusCallback)
Sets the point hover radius callback.void
LiningDataset. setPointRadius(RadiusCallback<DatasetContext> pointRadiusCallback)
Sets the point radius callback.void
BubbleDataset. setRadius(RadiusCallback<DatasetContext> radiusCallback)
Sets the radius callback. -
Uses of RadiusCallback in org.pepstock.charba.client.datalabels
Methods in org.pepstock.charba.client.datalabels that return RadiusCallback Modifier and Type Method Description RadiusCallback<DataLabelsContext>
LabelItem. getBorderRadiusCallback()
Returns the border radius callback, if set, otherwisenull
.Methods in org.pepstock.charba.client.datalabels with parameters of type RadiusCallback Modifier and Type Method Description AbstractBuilder<T>
AbstractBuilder. setBorderRadius(RadiusCallback<DataLabelsContext> borderRadiusCallback)
Sets the border radius callback.void
LabelItem. setBorderRadius(RadiusCallback<DataLabelsContext> borderRadiusCallback)
Sets the border radius callback.
-