A reference to the Stock Chart built-in navigator instance (the lower widget pane). Obtain the instance to call the available navigator methods.

Example

<div id="stock-chart"></div>
<script>
var stockChart = $("#stock-chart").kendoStockChart({
    dataSource: {
        data: [
            { date: "2012/01/01", open: 10, high: 15, low: 8, close: 12, volume: 1000 },
            { date: "2012/01/02", open: 12, high: 18, low: 10, close: 15, volume: 1200 }
        ]
    },
    dateField: "date",
    series: [{
        type: "candlestick",
        openField: "open",
        highField: "high", 
        lowField: "low",
        closeField: "close"
    }]
}).data("kendoStockChart");

// Access the navigator instance
var navigator = stockChart.navigator;
console.log(navigator);
</script>

Important

The navigator field is available in Kendo UI v.2016.2.517 and later

In this article
navigator
Not finding the help you need?
Contact Support