public interface PlotAtrMarkerOptions extends Any
fillColor
, lineColor
and lineWidth
define the visual appearance of
the markers. Other series types, like column series, don't have markers, but
have visual options on the series level instead.
In styled mode, the markers can be styled with the .highcharts-point
,
.highcharts-point-hover
and .highcharts-point-select
class names.Modifier and Type | Method and Description |
---|---|
boolean |
getEnabled()
(Highstock) Enable or disable the point marker.
|
double |
getEnabledThreshold()
(Highstock) The threshold for how dense the point markers should be
before they are hidden, given that
enabled is not defined. |
Unknown |
getFillColor()
(Highstock) The fill color of the point marker.
|
double |
getHeight()
(Highstock) Image markers only.
|
String |
getLineColor()
(Highstock) The color of the point marker's outline.
|
double |
getLineWidth()
(Highstock) The width of the point marker's outline.
|
double |
getRadius()
(Highstock) The radius of the point marker.
|
PlotAtrMarkerStatesOptions |
getStates()
(Highstock) States for a single point marker.
|
String |
getSymbol()
(Highstock) A predefined shape or symbol for the marker.
|
double |
getWidth()
(Highstock) Image markers only.
|
void |
setEnabled(boolean value)
(Highstock) Enable or disable the point marker.
|
void |
setEnabledThreshold(double value)
(Highstock) The threshold for how dense the point markers should be
before they are hidden, given that
enabled is not defined. |
void |
setFillColor(Any value)
(Highstock) The fill color of the point marker.
|
void |
setFillColor(GradientColorObject value)
(Highstock) The fill color of the point marker.
|
void |
setFillColor(String value)
(Highstock) The fill color of the point marker.
|
void |
setHeight(double value)
(Highstock) Image markers only.
|
void |
setLineColor(String value)
(Highstock) The color of the point marker's outline.
|
void |
setLineWidth(double value)
(Highstock) The width of the point marker's outline.
|
void |
setRadius(double value)
(Highstock) The radius of the point marker.
|
void |
setStates(PlotAtrMarkerStatesOptions value)
(Highstock) States for a single point marker.
|
void |
setSymbol(String value)
(Highstock) A predefined shape or symbol for the marker.
|
void |
setWidth(double value)
(Highstock) Image markers only.
|
boolean getEnabled()
undefined
, the
markers are hidden when the data is dense, and shown for more widespread
data points.void setEnabled(boolean value)
undefined
, the
markers are hidden when the data is dense, and shown for more widespread
data points.double getEnabledThreshold()
enabled
is not defined. The number
indicates the horizontal distance between the two closest points in the
series, as multiples of the marker.radius
. In other words, the default
value of 2 means points are hidden if overlapping horizontally.void setEnabledThreshold(double value)
enabled
is not defined. The number
indicates the horizontal distance between the two closest points in the
series, as multiples of the marker.radius
. In other words, the default
value of 2 means points are hidden if overlapping horizontally.@Nullable Unknown getFillColor()
undefined
, the
series' or point's color is used.void setFillColor(GradientColorObject value)
undefined
, the
series' or point's color is used.void setFillColor(String value)
undefined
, the
series' or point's color is used.void setFillColor(Any value)
undefined
, the
series' or point's color is used.double getHeight()
width
must also be set.void setHeight(double value)
width
must also be set.@Nullable String getLineColor()
undefined
,
the series' or point's color is used.void setLineColor(String value)
undefined
,
the series' or point's color is used.double getLineWidth()
void setLineWidth(double value)
double getRadius()
void setRadius(double value)
@Nullable PlotAtrMarkerStatesOptions getStates()
void setStates(PlotAtrMarkerStatesOptions value)
@Nullable String getSymbol()
Highcharts.SVGRenderer.prototype.symbols
. The callback is then used by
its method name, as shown in the demo.void setSymbol(String value)
Highcharts.SVGRenderer.prototype.symbols
. The callback is then used by
its method name, as shown in the demo.double getWidth()
height
must also be set.void setWidth(double value)
height
must also be set.Copyright © 2020. All rights reserved.