Class Position
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.Position
-
- All Implemented Interfaces:
Serializable
public class Position extends AbstractConfigurationObject
Position configuration for the credits label. Supported properties are align, verticalAlign, x and y. Defaults to position: { align: 'right', x: -10, verticalAlign: 'bottom', y: -5 }- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Position()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HorizontalAligngetHorizontalAlign()VerticalAligngetVerticalAlign()NumbergetX()NumbergetY()voidsetHorizontalAlign(HorizontalAlign horizontalAlign)The horizontal alignment of the credits.voidsetVerticalAlign(VerticalAlign verticalAlign)Sets the vertical alignment of the credits.voidsetX(Number x)The X position of the credits.voidsetY(Number y)The Y position of the credits.
-
-
-
Method Detail
-
getVerticalAlign
public VerticalAlign getVerticalAlign()
- Returns:
- the verticalAlign
- See Also:
setVerticalAlign(VerticalAlign)
-
setVerticalAlign
public void setVerticalAlign(VerticalAlign verticalAlign)
Sets the vertical alignment of the credits. Can be one ofVerticalAlign.TOP,VerticalAlign.MIDDLEandVerticalAlign.BOTTOM. Defaults toVerticalAlign.TOP.- Parameters:
verticalAlign- the align to set
-
getHorizontalAlign
public HorizontalAlign getHorizontalAlign()
- Returns:
- the horizontal alignment
- See Also:
setHorizontalAlign(HorizontalAlign)
-
setHorizontalAlign
public void setHorizontalAlign(HorizontalAlign horizontalAlign)
The horizontal alignment of the credits. Can be one ofHorizontalAlign.LEFT,HorizontalAlign.CENTERandHorizontalAlign.RIGHT. Defaults toHorizontalAlign.CENTER.- Parameters:
horizontalAlign- the alignment to set
-
getX
public Number getX()
- Returns:
- the X position of the credits
- See Also:
setX(Number)
-
setX
public void setX(Number x)
The X position of the credits. Defaults to -10.- Parameters:
x- the X position to set
-
getY
public Number getY()
- Returns:
- the Y position of the credits
- See Also:
setY(Number)
-
setY
public void setY(Number y)
The Y position of the credits. Defaults to -5.- Parameters:
y- the Y position to set
-
-