Class Marker
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.Marker
-
- All Implemented Interfaces:
Serializable
public class Marker extends AbstractConfigurationObject
In Highcharts 1.0, the appearance of all markers belonging to the hovered series. For settings on the hover state of the individual point, see marker.states.hover.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleangetEnabled()ColorgetFillColor()NumbergetHeight()ColorgetLineColor()NumbergetLineWidth()NumbergetRadius()StatesgetStates()MarkerSymbolgetSymbol()NumbergetWidth()voidsetEnabled(Boolean enabled)Enable or disable the point marker.voidsetFillColor(Color fillColor)The fill color of the point marker.voidsetHeight(Number height)Image markers only.voidsetLineColor(Color lineColor)The color of the point marker's outline.voidsetLineWidth(Number lineWidth)The width of the point marker's outline.voidsetRadius(Number radius)The radius of the point marker.voidsetStates(States states)voidsetSymbol(MarkerSymbol symbol)voidsetWidth(Number width)Image markers only.
-
-
-
Constructor Detail
-
Marker
public Marker()
-
Marker
public Marker(Boolean enabled)
-
-
Method Detail
-
getEnabled
public Boolean getEnabled()
- See Also:
setEnabled(Boolean)
-
setEnabled
public void setEnabled(Boolean enabled)
Enable or disable the point marker. Ifnull, the markers are hidden when the data is dense, and shown for more widespread data points.Defaults to: null
-
getFillColor
public Color getFillColor()
- See Also:
setFillColor(Color)
-
setFillColor
public void setFillColor(Color fillColor)
The fill color of the point marker. Whennull, the series' or point's color is used.
-
getHeight
public Number getHeight()
- See Also:
setHeight(Number)
-
setHeight
public void setHeight(Number height)
Image markers only. Set the image width explicitly. When using this option, awidthmust also be set.Defaults to: null
-
getLineColor
public Color getLineColor()
- See Also:
setLineColor(Color)
-
setLineColor
public void setLineColor(Color lineColor)
The color of the point marker's outline. Whennull, the series' or point's color is used.Defaults to: #ffffff
-
getLineWidth
public Number getLineWidth()
- See Also:
setLineWidth(Number)
-
setLineWidth
public void setLineWidth(Number lineWidth)
The width of the point marker's outline.Defaults to: 0
-
getRadius
public Number getRadius()
- See Also:
setRadius(Number)
-
setRadius
public void setRadius(Number radius)
The radius of the point marker.Defaults to: 4
-
getStates
public States getStates()
- See Also:
setStates(States)
-
setStates
public void setStates(States states)
-
getWidth
public Number getWidth()
- See Also:
setWidth(Number)
-
setWidth
public void setWidth(Number width)
Image markers only. Set the image width explicitly. When using this option, aheightmust also be set.Defaults to: null
-
getSymbol
public MarkerSymbol getSymbol()
- See Also:
setSymbol(MarkerSymbol)
-
setSymbol
public void setSymbol(MarkerSymbol symbol)
-
-