Uses of Class
org.pepstock.charba.client.annotation.enums.LabelPosition
-
Packages that use LabelPosition 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.annotation.elements Contains theAnnotationPlugin.ID
plugin elements interfaces to use in the callbacks and events.org.pepstock.charba.client.annotation.enums Contains all enumerations to configure theAnnotationPlugin.ID
plugin. -
-
Uses of LabelPosition in org.pepstock.charba.client.annotation
Fields in org.pepstock.charba.client.annotation declared as LabelPosition Modifier and Type Field Description static LabelPosition
LineLabel. DEFAULT_POSITION
Default line label position,CENTER
.Methods in org.pepstock.charba.client.annotation that return LabelPosition Modifier and Type Method Description LabelPosition
LineLabel. getPosition()
Returns the anchor position of label on line.LabelPosition
AlignPosition. getX()
Returns the anchor position of label on horizontal dimension.LabelPosition
AlignPosition. getY()
Returns the anchor position of label on vertical dimension.Methods in org.pepstock.charba.client.annotation with parameters of type LabelPosition Modifier and Type Method Description void
LineLabel. setPosition(LabelPosition position)
Sets the anchor position of label on line.void
AlignPosition. setX(LabelPosition position)
Sets the anchor position of label on horizontal dimension.void
AlignPosition. setY(LabelPosition position)
Sets the anchor position of label on vertical dimension.Constructors in org.pepstock.charba.client.annotation with parameters of type LabelPosition Constructor Description AlignPosition(LabelPosition x)
Creates an object with X position.AlignPosition(LabelPosition x, LabelPosition y)
Creates an object with X and Y positions for the label. -
Uses of LabelPosition in org.pepstock.charba.client.annotation.elements
Methods in org.pepstock.charba.client.annotation.elements that return LabelPosition Modifier and Type Method Description LabelPosition
OptionsElement. getPosition()
Returns the anchor position of label on line.LabelPosition
AlignPositionElement. getX()
Returns the anchor position of label on horizontal dimension.LabelPosition
AlignPositionElement. getY()
Returns the anchor position of label on vertical dimension.Methods in org.pepstock.charba.client.annotation.elements with parameters of type LabelPosition Modifier and Type Method Description void
OptionsElement. setPosition(LabelPosition position)
Sets the anchor position of label on line.void
AlignPositionElement. setX(LabelPosition position)
Sets the anchor position of label on horizontal dimension.void
AlignPositionElement. setY(LabelPosition position)
Sets the anchor position of label on vertical dimension. -
Uses of LabelPosition in org.pepstock.charba.client.annotation.enums
Methods in org.pepstock.charba.client.annotation.enums that return LabelPosition Modifier and Type Method Description static LabelPosition
LabelPosition. valueOf(String name)
Returns the enum constant of this type with the specified name.static LabelPosition[]
LabelPosition. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-