Uses of Interface
org.pepstock.charba.client.callbacks.RotationCallback
-
Packages that use RotationCallback 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 RotationCallback in org.pepstock.charba.client.annotation
Methods in org.pepstock.charba.client.annotation that return RotationCallback Modifier and Type Method Description RotationCallback<AnnotationContext>
EllipseAnnotation. getRotationCallback()
Returns the callback called to set the rotation of label in degrees.RotationCallback<AnnotationContext>
LineLabel. getRotationCallback()
Returns the callback called to set the rotation of label in degrees.Methods in org.pepstock.charba.client.annotation with parameters of type RotationCallback Modifier and Type Method Description void
EllipseAnnotation. setRotation(RotationCallback<AnnotationContext> rotationCallback)
Sets the callback to set the rotation of label in degrees.void
LineLabel. setRotation(RotationCallback<AnnotationContext> rotationCallback)
Sets the callback to set the rotation of label in degrees. -
Uses of RotationCallback in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return RotationCallback Modifier and Type Method Description RotationCallback<DatasetContext>
Point. getRotationCallback()
Returns the rotation callback, if set, otherwisenull
.Methods in org.pepstock.charba.client.configuration with parameters of type RotationCallback Modifier and Type Method Description void
Point. setRotation(RotationCallback<DatasetContext> rotationCallback)
Sets the rotation callback. -
Uses of RotationCallback in org.pepstock.charba.client.data
Methods in org.pepstock.charba.client.data that return RotationCallback Modifier and Type Method Description RotationCallback<DatasetContext>
LiningDataset. getPointRotationCallback()
Returns the point rotation callback, if set, otherwisenull
.RotationCallback<DatasetContext>
BubbleDataset. getRotationCallback()
Returns the rotation callback, if set, otherwisenull
.Methods in org.pepstock.charba.client.data with parameters of type RotationCallback Modifier and Type Method Description void
LiningDataset. setPointRotation(RotationCallback<DatasetContext> pointRotationCallback)
Sets the point rotation callback.void
BubbleDataset. setRotation(RotationCallback<DatasetContext> rotationCallback)
Sets the rotation callback. -
Uses of RotationCallback in org.pepstock.charba.client.datalabels
Methods in org.pepstock.charba.client.datalabels that return RotationCallback Modifier and Type Method Description RotationCallback<DataLabelsContext>
LabelItem. getRotationCallback()
Returns the rotation callback, if set, otherwisenull
.Methods in org.pepstock.charba.client.datalabels with parameters of type RotationCallback Modifier and Type Method Description AbstractBuilder<T>
AbstractBuilder. setRotation(RotationCallback<DataLabelsContext> rotationCallback)
Sets the rotation callback.void
LabelItem. setRotation(RotationCallback<DataLabelsContext> rotationCallback)
Sets the rotation callback.
-