Default options for the navigator hint.

The visibility of the hint.

The hint template. Template variables:

  • from - The lower boundary of the selected range
  • to - Theupper boundary of the selected range

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    navigator: {
      hint: {
        template: "From: #= from # To: #= to #"
      },

      series: {
        type: "line",
        field: "value",
        categoryField: "date",
        data: [
          { value: 1, date: new Date(2012, 1, 1) },
          { value: 2, date: new Date(2012, 1, 2) },
          { value: 1, date: new Date(2012, 1, 3) }
        ]
      }
    }
});
</script>

The format of the hint.

In this article