navigator.positionString(default: "bottom")
The position of the navigator.
The supported values are:
- "top" - the navigator is positioned on the top
- "bottom" - the navigator is positioned on the bottom (default)
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
navigator: {
position: "top",
series: [{
type: "line",
field: "value",
categoryField: "date"
}]
},
dataSource: {
data: [
{ date: new Date("2016/01/01"), value: 1 },
{ date: new Date("2016/01/02"), value: 2 }
]
}
});
</script>
In this article