series.highField String (default: "high")

The data field containing the high value.

The highField option is supported when series.type is set to "candlestick" or "ohlc".

Example - set the chart series high field

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    {
      type: "candlestick",
      highField: "highPrice",
      data: [
        { open: 1, highPrice: 2, low: 0.5, close: 1.5},
        { open: 2, highPrice: 3, low: 1, close: 1.5}
      ]
    }
  ]
});
</script>
In this article