com.vaadin.flow.component.charts.model.
Class AbstractDataLabels
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.AbstractDataLabels
-
All Implemented Interfaces:
Direct Known Subclasses:
public abstract class AbstractDataLabels extends AbstractConfigurationObject
See Also:
-
-
Field Summary
Fields Modifier and Type Field Description static String
OVERFLOW_JUSTIFY
static String
OVERFLOW_NONE
-
Constructor Summary
Constructors Constructor Description AbstractDataLabels()
-
Method Summary
All Methods Modifier and Type Method Description abstract Color
getBackgroundColor()
abstract Color
getBorderColor()
abstract Number
getBorderRadius()
abstract Number
getBorderWidth()
abstract String
getClassName()
abstract Color
getColor()
abstract Boolean
getCrop()
abstract Boolean
getDefer()
abstract Boolean
getEnabled()
abstract String
getFormat()
abstract String
getFormatter()
abstract Boolean
getInside()
abstract String
getOverflow()
abstract Number
getPadding()
abstract Number
getRotation()
abstract Boolean
getShadow()
abstract Shape
getShape()
abstract Style
getStyle()
abstract Boolean
getUseHTML()
abstract VerticalAlign
getVerticalAlign()
abstract Number
getZIndex()
abstract void
setBackgroundColor(Color backgroundColor)
The background color or gradient for the data label.
abstract void
setBorderColor(Color borderColor)
The border color for the data label.
abstract void
setBorderRadius(Number borderRadius)
The border radius in pixels for the data label.
abstract void
setBorderWidth(Number borderWidth)
The border width in pixels for the data label.
abstract void
setClassName(String className)
A class name for the data label.
abstract void
setColor(Color color)
The text color for the data labels.
abstract void
setCrop(Boolean crop)
Whether to hide data labels that are outside the plot area.
abstract void
setDefer(Boolean defer)
Whether to defer displaying the data labels until the initial series animation has finished.
abstract void
setEnabled(Boolean enabled)
Enable or disable the data labels.
abstract void
setFormat(String format)
A format string for the data label.
abstract void
setFormatter(String _fn_formatter)
Callback JavaScript function to format the data label.
abstract void
setInside(Boolean inside)
For points with an extent, like columns, whether to align the data label inside the box or to the actual value point.
abstract void
setOverflow(String overflow)
How to handle data labels that flow outside the plot area.
abstract void
setPadding(Number padding)
When either the
borderWidth
or thebackgroundColor
is set, this is the padding within the box.abstract void
setRotation(Number rotation)
Text rotation in degrees.
abstract void
setShadow(Boolean shadow)
The shadow of the box.
abstract void
setShape(Shape shape)
The name of a symbol to use for the border around the label.
abstract void
setStyle(Style style)
Styles for the label.
abstract void
setUseHTML(Boolean useHTML)
Whether to use HTML to render the labels.
abstract void
setVerticalAlign(VerticalAlign verticalAlign)
The vertical alignment of a data label.
abstract void
setZIndex(Number zIndex)
The Z index of the data labels.
-
-
-
Method Detail
-
getClassName
public abstract String getClassName()
See Also:
-
setClassName
public abstract void setClassName(String className)
A class name for the data label.
-
getBackgroundColor
public abstract Color getBackgroundColor()
See Also:
-
setBackgroundColor
public abstract void setBackgroundColor(Color backgroundColor)
The background color or gradient for the data label.
-
getBorderColor
public abstract Color getBorderColor()
See Also:
-
setBorderColor
public abstract void setBorderColor(Color borderColor)
The border color for the data label.
-
getBorderRadius
public abstract Number getBorderRadius()
See Also:
-
setBorderRadius
public abstract void setBorderRadius(Number borderRadius)
The border radius in pixels for the data label.
-
getColor
public abstract Color getColor()
See Also:
-
setColor
public abstract void setColor(Color color)
The text color for the data labels.
-
getBorderWidth
public abstract Number getBorderWidth()
See Also:
-
setBorderWidth
public abstract void setBorderWidth(Number borderWidth)
The border width in pixels for the data label.
-
getCrop
public abstract Boolean getCrop()
See Also:
-
setCrop
public abstract void setCrop(Boolean crop)
Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.
-
getDefer
public abstract Boolean getDefer()
See Also:
-
setDefer
public abstract void setDefer(Boolean defer)
Whether to defer displaying the data labels until the initial series animation has finished.
-
getEnabled
public abstract Boolean getEnabled()
See Also:
-
setEnabled
public abstract void setEnabled(Boolean enabled)
Enable or disable the data labels.
-
getFormat
public abstract String getFormat()
See Also:
-
setFormat
public abstract void setFormat(String format)
A format string for the data label. Available variables are the same as for
formatter
.
-
getFormatter
public abstract String getFormatter()
See Also:
-
setFormatter
public abstract void setFormatter(String _fn_formatter)
Callback JavaScript function to format the data label. Note that if a
format
is defined, the format takes precedence and the formatter is ignored.
-
getInside
public abstract Boolean getInside()
See Also:
-
setInside
public abstract void setInside(Boolean inside)
For points with an extent, like columns, whether to align the data label inside the box or to the actual value point.
-
getOverflow
public abstract String getOverflow()
See Also:
-
setOverflow
public abstract void setOverflow(String overflow)
How to handle data labels that flow outside the plot area. The default is
justify
, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, setcrop
tofalse
andoverflow
to"none"
.
-
getPadding
public abstract Number getPadding()
See Also:
-
setPadding
public abstract void setPadding(Number padding)
When either the
borderWidth
or thebackgroundColor
is set, this is the padding within the box.
-
getRotation
public abstract Number getRotation()
See Also:
-
setRotation
public abstract void setRotation(Number rotation)
Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.
-
getShadow
public abstract Boolean getShadow()
See Also:
-
setShadow
public abstract void setShadow(Boolean shadow)
The shadow of the box.
-
getShape
public abstract Shape getShape()
See Also:
-
setShape
public abstract void setShape(Shape shape)
The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.
-
getStyle
public abstract Style getStyle()
See Also:
-
setStyle
public abstract void setStyle(Style style)
Styles for the label.
-
getUseHTML
public abstract Boolean getUseHTML()
See Also:
-
setUseHTML
public abstract void setUseHTML(Boolean useHTML)
Whether to use HTML to render the labels.
-
getVerticalAlign
public abstract VerticalAlign getVerticalAlign()
See Also:
-
setVerticalAlign
public abstract void setVerticalAlign(VerticalAlign verticalAlign)
The vertical alignment of a data label.
-
getZIndex
public abstract Number getZIndex()
See Also:
-
setZIndex
public abstract void setZIndex(Number zIndex)
The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.
-
-