point
Configures series points in scatter, line- and area-like series.
Declared in commonSeriesSettings, the point settings apply to all points in the chart. Declared in a series configuration object, the point settings apply only to the points that belong to this particular series. The series-specific point settings override the common ones.
See Also
- customizePoint - сustomizes the appearance of an individual series point.
border
Configures the appearance of the series point border in scatter, line- and area-like series.
color
Colors the series points.
This option supports the following colors.
- Hexadecimal colors
- RGB colors
- RGBA colors
- Predefined/cross-browser color names
- Predefined SVG colors
hoverMode
Specifies series elements to be highlighted when a user pauses on a series point.
When a user pauses on a series point, this and other series points may react in one of the following ways depending on the value of the hoverMode option.
- onlyPoint
Only the point that a user pauses on changes its style. - allSeriesPoints
All points in the series change their style. - allArgumentPoints
The point that a user pauses on changes its style. Points with the same argument do it as well. - none
The point does not react to pointing to it.
When configuring the widget using ASP.NET MVC Wrappers, specify this option using the ChartPointInteractionMode
enum. This enum accepts the following values: OnlyPoint
, AllSeriesPoints
, AllArgumentPoints
and None
.
image
Substitutes the standard point symbols with an image.
To display an image instead of series points, assign its URL to the url option. If needed, resize the image using the height and width options. Otherwise, you can assign the URL directly to the image option.
selectionMode
Specifies series elements to be highlighted when a user selects a series point.
When a user selects a series point, this and other series points may react in one of the following ways depending on the value of the selectionMode option.
- onlyPoint
Only the selected point changes its style. - allSeriesPoints
All points in the series change their style. - allArgumentPoints
The selected point changes its style. Points with the same argument do it as well. - none
The point does not react to selecting.
When configuring the widget using ASP.NET MVC Wrappers, specify this option using the ChartPointInteractionMode
enum. This enum accepts the following values: OnlyPoint
, AllSeriesPoints
, AllArgumentPoints
and None
.
See Also
- pointSelectionMode - specifies whether only one or several points can stay selected.
- pointSelectionChanged - an event that fires after the selection state of a point has been changed.
selectionStyle
Configures the appearance of a selected series point.
symbol
Specifies which symbol should represent series points in scatter, line- and area-like series.
The following symbols are available.
symbol | Result |
---|---|
"circle" | ![]() |
"square" | ![]() |
"polygon" | ![]() |
"triangleDown" | ![]() |
"triangleUp" | ![]() |
"cross" | ![]() |
When configuring the widget using ASP.NET MVC Wrappers, specify this option using the PointSymbol
enum. This enum accepts the following values: Circle
, Square
, Polygon
, TriangleDown
, TriangleUp
and Cross
.