public interface SeriesRsiDataMarkerOptions 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()
(Highcharts, Highstock, Highmaps) Enable or disable the point marker.
|
double |
getEnabledThreshold()
(Highcharts, Highstock, Highmaps) The threshold for how dense the point
markers should be before they are hidden, given that
enabled is not
defined. |
Unknown |
getFillColor()
(Highcharts, Highstock, Highmaps) The fill color of the point marker.
|
double |
getHeight()
(Highcharts, Highstock, Highmaps) Image markers only.
|
String |
getLineColor()
(Highcharts, Highstock, Highmaps) The color of the point marker's
outline.
|
double |
getLineWidth()
(Highcharts, Highstock, Highmaps) The width of the point marker's
outline.
|
double |
getRadius()
(Highcharts, Highstock, Highmaps) The radius of the point marker.
|
SeriesRsiDataMarkerStatesOptions |
getStates()
(Highcharts, Highstock, Highmaps) States for a single point marker.
|
String |
getSymbol()
(Highcharts, Highstock, Highmaps) A predefined shape or symbol for the
marker.
|
double |
getWidth()
(Highcharts, Highstock, Highmaps) Image markers only.
|
void |
setEnabled(boolean value)
(Highcharts, Highstock, Highmaps) Enable or disable the point marker.
|
void |
setEnabledThreshold(double value)
(Highcharts, Highstock, Highmaps) The threshold for how dense the point
markers should be before they are hidden, given that
enabled is not
defined. |
void |
setFillColor(Any value)
(Highcharts, Highstock, Highmaps) The fill color of the point marker.
|
void |
setFillColor(GradientColorObject value)
(Highcharts, Highstock, Highmaps) The fill color of the point marker.
|
void |
setFillColor(String value)
(Highcharts, Highstock, Highmaps) The fill color of the point marker.
|
void |
setHeight(double value)
(Highcharts, Highstock, Highmaps) Image markers only.
|
void |
setLineColor(String value)
(Highcharts, Highstock, Highmaps) The color of the point marker's
outline.
|
void |
setLineWidth(double value)
(Highcharts, Highstock, Highmaps) The width of the point marker's
outline.
|
void |
setRadius(double value)
(Highcharts, Highstock, Highmaps) The radius of the point marker.
|
void |
setStates(SeriesRsiDataMarkerStatesOptions value)
(Highcharts, Highstock, Highmaps) States for a single point marker.
|
void |
setSymbol(String value)
(Highcharts, Highstock, Highmaps) A predefined shape or symbol for the
marker.
|
void |
setWidth(double value)
(Highcharts, Highstock, Highmaps) 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 SeriesRsiDataMarkerStatesOptions getStates()
void setStates(SeriesRsiDataMarkerStatesOptions 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.