Class Attributes
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.Attributes
-
- All Implemented Interfaces:
Serializable
public class Attributes extends AbstractConfigurationObject
A collection of style attributes for theHalo- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Attributes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ColorgetFill()ColorgetStroke()NumbergetStrokeWidth()voidsetFill(Color fill)SVG fill attributevoidsetStroke(Color stroke)SVG stroke attributevoidsetStrokeWidth(Number strokeWidth)SVG stroke-width attribute
-
-
-
Method Detail
-
getFill
public Color getFill()
- Returns:
- See Also:
setFill(Color)
-
setFill
public void setFill(Color fill)
SVG fill attribute- Parameters:
fill-
-
getStroke
public Color getStroke()
- Returns:
- See Also:
setStroke(Color)
-
setStroke
public void setStroke(Color stroke)
SVG stroke attribute- Parameters:
stroke-
-
getStrokeWidth
public Number getStrokeWidth()
- Returns:
- See Also:
setStrokeWidth(Number)
-
setStrokeWidth
public void setStrokeWidth(Number strokeWidth)
SVG stroke-width attribute- Parameters:
strokeWidth-
-
-