series.openField String

The data field containing the open value.

The openField 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",
      openField: "openPrice",
      data: [
        { open: 1, high: 2, low: 0.5, openPrice: 1.5},
        { open: 2, high: 3, low: 1, openPrice: 1.5}
      ]
    }
  ]
});
</script>
In this article