navigator.series.markersObject
Marker options.
** Applicable for area and line series. **
navigator.series.markers.backgroundString
The background color of the current series markers.
navigator.series.markers.borderObject
The border of the markers.
navigator.series.markers.border.colorString
(default: "black")
The color of the border.
navigator.series.markers.border.widthNumber
(default: 0)
The width of the border.
navigator.series.markers.rotationNumber|Function
The rotation angle of the markers.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
navigator: {
series: [{
type: "line",
field: "value",
categoryField: "date",
markers: {
type: "square",
rotation: 45
},
data: [
{ value: 1, date: new Date(2012, 1, 1) },
{ value: 2, date: new Date(2012, 1, 2) }
]
}]
}
});
</script>
navigator.series.markers.sizeNumber
(default: 6)
The marker size.
navigator.series.markers.typeString
(default: "circle")
Configures the markers shape type.
"square"
The marker shape is square.
"triangle"
The marker shape is triangle.
"circle"
The marker shape is circle.
"cross"
The marker shape is cross.
navigator.series.markers.visibleBoolean
(default: false)
The markers visibility.
In this article