com.vaadin.flow.component.charts.model.
Class Marker
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.Marker
-
All Implemented Interfaces:
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:
-
-
Method Summary
All Methods Modifier and Type Method and Description Boolean
getEnabled()
Color
getFillColor()
Number
getHeight()
Color
getLineColor()
Number
getLineWidth()
Number
getRadius()
States
getStates()
MarkerSymbol
getSymbol()
Number
getWidth()
void
setEnabled(Boolean enabled)
Enable or disable the point marker.
void
setFillColor(Color fillColor)
The fill color of the point marker.
void
setHeight(Number height)
Image markers only.
void
setLineColor(Color lineColor)
The color of the point marker's outline.
void
setLineWidth(Number lineWidth)
The width of the point marker's outline.
void
setRadius(Number radius)
The radius of the point marker.
void
setStates(States states)
void
setSymbol(MarkerSymbol symbol)
void
setWidth(Number width)
Image markers only.
-
-
-
Constructor Detail
-
Marker
public Marker()
-
Marker
public Marker(Boolean enabled)
-
-
Method Detail
-
getEnabled
public Boolean getEnabled()
See Also:
-
setEnabled
public void setEnabled(Boolean enabled)
Enable or disable the point marker. If
null
, 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
public void setFillColor(Color fillColor)
The fill color of the point marker. When
null
, the series' or point's color is used.
-
getHeight
public Number getHeight()
See Also:
-
setHeight
public void setHeight(Number height)
Image markers only. Set the image width explicitly. When using this option, a
width
must also be set.Defaults to: null
-
getLineColor
public Color getLineColor()
See Also:
-
setLineColor
public void setLineColor(Color lineColor)
The color of the point marker's outline. When
null
, the series' or point's color is used.Defaults to: #ffffff
-
getLineWidth
public Number getLineWidth()
See Also:
-
setLineWidth
public void setLineWidth(Number lineWidth)
The width of the point marker's outline.
Defaults to: 0
-
getRadius
public Number getRadius()
See Also:
-
setRadius
public void setRadius(Number radius)
The radius of the point marker.
Defaults to: 4
-
getStates
public States getStates()
See Also:
-
setStates
public void setStates(States states)
-
getWidth
public Number getWidth()
See Also:
-
setWidth
public void setWidth(Number width)
Image markers only. Set the image width explicitly. When using this option, a
height
must also be set.Defaults to: null
-
getSymbol
public MarkerSymbol getSymbol()
See Also:
-
setSymbol
public void setSymbol(MarkerSymbol symbol)
-
-