com.vaadin.flow.component.charts.model.
Class Position
All Implemented Interfaces:
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:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetX()
getY()
void
setHorizontalAlign
(HorizontalAlign horizontalAlign) The horizontal alignment of the credits.
void
setVerticalAlign
(VerticalAlign verticalAlign) Sets the vertical alignment of the credits.
void
The X position of the credits.
void
The Y position of the credits.
-
Constructor Details
-
Position
public Position()
-
-
Method Details
-
getVerticalAlign
Returns:
the verticalAlign
See Also:
-
setVerticalAlign
Sets the vertical alignment of the credits. Can be one of
VerticalAlign.TOP
,VerticalAlign.MIDDLE
andVerticalAlign.BOTTOM
. Defaults toVerticalAlign.TOP
.Parameters:
verticalAlign
- the align to set -
getHorizontalAlign
Returns:
the horizontal alignment
See Also:
-
setHorizontalAlign
The horizontal alignment of the credits. Can be one of
HorizontalAlign.LEFT
,HorizontalAlign.CENTER
andHorizontalAlign.RIGHT
. Defaults toHorizontalAlign.CENTER
.Parameters:
horizontalAlign
- the alignment to set -
getX
Returns:
the X position of the credits
See Also:
-
setX
The X position of the credits. Defaults to -10.
Parameters:
x
- the X position to set -
getY
Returns:
the Y position of the credits
See Also:
-
setY
The Y position of the credits. Defaults to -5.
Parameters:
y
- the Y position to set
-