Series.markers
configurationThe chart series marker configuration.
The chart displays the series labels when the series.markers.visible option is set to
true. Themarkersoption is supported when series.type is set to "area", "rangeArea", "line", "scatter", "scatterLine", "radarLine", "radarArea", "polarLine", "polarScatter" or "polarArea".
series.markers
Objectseries.markers.background
String|FunctionThe background color of the series markers.
series.markers.border
Object|FunctionThe border of the markers.
The border radius in pixels when type is set to "roundedRect". Defaults to 1/5 of the marker size.
series.markers.from
ObjectThe chart series marker configuration for the "from" point. Supported for "rangeArea" and "verticalRangeArea" series.
series.markers.rotation
Number|FunctionThe rotation angle of the markers.
series.markers.size
Number|FunctionThe marker size in pixels.
Default: 6
series.markers.to
ObjectThe chart series marker configuration for the "to" point. Supported for "rangeArea" and "verticalRangeArea" series.
series.markers.type
String|FunctionThe markers shape.
The supported values are:
- "circle" - the marker shape is circle.
- "square" - the marker shape is square.
- "triangle" - the marker shape is triangle.
- "cross" - the marker shape is cross.
- "rect" - alias for "square".
- "roundedRect" - the marker shape is a rounded rectangle.
Default: "circle"
series.markers.visible
Boolean|FunctionIf set to true the chart will display the series markers. By default chart series markers are displayed.
Default: true
series.markers.visual
FunctionA function that can be used to create a custom visual for the markers. The available argument fields are:
- rect - the
kendo.geometry.Rectthat defines where the visual should be rendered. - options - the marker options.
- createVisual - a function that can be used to get the default visual.
- category - the category of the marker point.
- dataItem - the dataItem of the marker point.
- value - the value of the marker point.
- sender - the chart instance.
- series - the series of the marker point.
series.markers.zIndex
Number|FunctionAn optional Z-index that can be used to change the default stacking order of the markers.