Configures the appearance of highlighted points.

** Applicable to candlestick and ohlc series. **

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    navigator: {
        series: [{
            type: "candlestick",
            openField: "open",
            highField: "high",
            lowField: "low",
            closeField: "close",
            categoryField: "date",
            highlight: {
                color: "red",
                opacity: 0.5
            }
        }]
    },
    dataSource: {
        data: [
            { date: new Date("2016/01/01"), open: 1, high: 3, low: 0.5, close: 2 },
            { date: new Date("2016/01/02"), open: 2, high: 4, low: 1.5, close: 3 }
        ]
    }
});
</script>

The border of highlighted points. The color is computed automatically from the base point color.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    navigator: {
        series: [{
            type: "candlestick",
            openField: "open",
            highField: "high",
            lowField: "low",
            closeField: "close",
            categoryField: "date",
            highlight: {
                border: {
                    width: 2,
                    color: "red"
                }
            }
        }]
    },
    dataSource: {
        data: [
            { date: new Date("2016/01/01"), open: 1, high: 3, low: 0.5, close: 2 },
            { date: new Date("2016/01/02"), open: 2, high: 4, low: 1.5, close: 3 }
        ]
    }
});
</script>

The width of the border.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    navigator: {
        series: [{
            type: "candlestick",
            openField: "open",
            highField: "high",
            lowField: "low",
            closeField: "close",
            categoryField: "date",
            highlight: {
                border: {
                    width: 3
                }
            }
        }]
    },
    dataSource: {
        data: [
            { date: new Date("2016/01/01"), open: 1, high: 3, low: 0.5, close: 2 },
            { date: new Date("2016/01/02"), open: 2, high: 4, low: 1.5, close: 3 }
        ]
    }
});
</script>

The border color.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    navigator: {
        series: [{
            type: "candlestick",
            openField: "open",
            highField: "high",
            lowField: "low",
            closeField: "close",
            categoryField: "date",
            highlight: {
                border: {
                    color: "red",
                    width: 2
                }
            }
        }]
    },
    dataSource: {
        data: [
            { date: new Date("2016/01/01"), open: 1, high: 3, low: 0.5, close: 2 },
            { date: new Date("2016/01/02"), open: 2, high: 4, low: 1.5, close: 3 }
        ]
    }
});
</script>

The border opacity.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    navigator: {
        series: [{
            type: "candlestick",
            openField: "open",
            highField: "high",
            lowField: "low",
            closeField: "close",
            categoryField: "date",
            highlight: {
                border: {
                    opacity: 0.5,
                    width: 2
                }
            }
        }]
    },
    dataSource: {
        data: [
            { date: new Date("2016/01/01"), open: 1, high: 3, low: 0.5, close: 2 },
            { date: new Date("2016/01/02"), open: 2, high: 4, low: 1.5, close: 3 }
        ]
    }
});
</script>

The highlight color.

** Available only for pie series **

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    navigator: {
        series: [{
            type: "line",
            field: "value",
            categoryField: "date",
            highlight: {
                color: "red"
            }
        }]
    },
    dataSource: {
        data: [
            { date: new Date("2016/01/01"), value: 1 },
            { date: new Date("2016/01/02"), value: 2 }
        ]
    }
});
</script>

Line options for highlighted points. The color is computed automatically from the base point color.

** Available only for candlestick series **

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    navigator: {
        series: [{
            type: "candlestick",
            openField: "open",
            highField: "high",
            lowField: "low",
            closeField: "close",
            categoryField: "date",
            highlight: {
                line: {
                    width: 3,
                    color: "red"
                }
            }
        }]
    },
    dataSource: {
        data: [
            { date: new Date("2016/01/01"), open: 1, high: 3, low: 0.5, close: 2 },
            { date: new Date("2016/01/02"), open: 2, high: 4, low: 1.5, close: 3 }
        ]
    }
});
</script>

The width of the line.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    navigator: {
        series: [{
            type: "candlestick",
            openField: "open",
            highField: "high",
            lowField: "low",
            closeField: "close",
            categoryField: "date",
            highlight: {
                line: {
                    width: 3
                }
            }
        }]
    },
    dataSource: {
        data: [
            { date: new Date("2016/01/01"), open: 1, high: 3, low: 0.5, close: 2 },
            { date: new Date("2016/01/02"), open: 2, high: 4, low: 1.5, close: 3 }
        ]
    }
});
</script>

The line color.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    navigator: {
        series: [{
            type: "candlestick",
            openField: "open",
            highField: "high",
            lowField: "low",
            closeField: "close",
            categoryField: "date",
            highlight: {
                line: {
                    color: "red",
                    width: 2
                }
            }
        }]
    },
    dataSource: {
        data: [
            { date: new Date("2016/01/01"), open: 1, high: 3, low: 0.5, close: 2 },
            { date: new Date("2016/01/02"), open: 2, high: 4, low: 1.5, close: 3 }
        ]
    }
});
</script>

The opacity of the line.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
      series: [
        {
          type: "candlestick",
          data: [
            {
              date: new Date(2024, 0, 1),
              open: 150.25,
              high: 152.8,
              low: 149.5,
              close: 152.3,
            },
            {
              date: new Date(2024, 0, 2),
              open: 152.5,
              high: 154.2,
              low: 151.8,
              close: 153.75,
            },
            {
              date: new Date(2024, 0, 3),
              open: 153.8,
              high: 155.4,
              low: 152.9,
              close: 154.2,
            },
            
          ],
          openField: "open",
          highField: "high",
          lowField: "low",
          closeField: "close",
          dateField: "date",
          name: "Stock Price",
          color: "#03a9f4",
          downColor: "#f44336",
        },
      ],
      navigator: {
        series: {
          type: "line",
          highlight: {
                line: {
                    opacity: 0.5
                }
            },
          data: [
            {
              date: new Date(2024, 0, 1),
              open: 150.25,
              high: 152.8,
              low: 149.5,
              close: 152.3,
            },
            {
              date: new Date(2024, 0, 2),
              open: 152.5,
              high: 154.2,
              low: 151.8,
              close: 153.75,
            },
            {
              date: new Date(2024, 0, 3),
              open: 153.8,
              high: 155.4,
              low: 152.9,
              close: 154.2,
            },
            
          ],
          field: "close",
          dateField: "date",
          color: "#ff9800",
        },
      },
    });
</script>

The opacity of the highlighted points.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
      series: [
        {
          type: "candlestick",
          data: [
            {
              date: new Date(2024, 0, 1),
              open: 150.25,
              high: 152.8,
              low: 149.5,
              close: 152.3,
            },
            {
              date: new Date(2024, 0, 2),
              open: 152.5,
              high: 154.2,
              low: 151.8,
              close: 153.75,
            },
            {
              date: new Date(2024, 0, 3),
              open: 153.8,
              high: 155.4,
              low: 152.9,
              close: 154.2,
            },
            
          ],
          openField: "open",
          highField: "high",
          lowField: "low",
          closeField: "close",
          dateField: "date",
          name: "Stock Price",
          color: "#03a9f4",
          downColor: "#f44336",
        },
      ],
      navigator: {
        series: {
          type: "line",
          highlight: {
            opacity: 0.5   
            },
          data: [
            {
              date: new Date(2024, 0, 1),
              open: 150.25,
              high: 152.8,
              low: 149.5,
              close: 152.3,
            },
            {
              date: new Date(2024, 0, 2),
              open: 152.5,
              high: 154.2,
              low: 151.8,
              close: 153.75,
            },
            {
              date: new Date(2024, 0, 3),
              open: 153.8,
              high: 155.4,
              low: 152.9,
              close: 154.2,
            },
            
          ],
          field: "close",
          dateField: "date",
          color: "#ff9800",
        },
      },
    });
</script>

A value indicating if the series points should be highlighted.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
      series: [
        {
          type: "candlestick",
          data: [
            {
              date: new Date(2024, 0, 1),
              open: 150.25,
              high: 152.8,
              low: 149.5,
              close: 152.3,
            },
            {
              date: new Date(2024, 0, 2),
              open: 152.5,
              high: 154.2,
              low: 151.8,
              close: 153.75,
            },
            {
              date: new Date(2024, 0, 3),
              open: 153.8,
              high: 155.4,
              low: 152.9,
              close: 154.2,
            },
            
          ],
          openField: "open",
          highField: "high",
          lowField: "low",
          closeField: "close",
          dateField: "date",
          name: "Stock Price",
          color: "#03a9f4",
          downColor: "#f44336",
        },
      ],
      navigator: {
        series: {
          type: "line",
          highlight: {
            visible: false,   
            },
          data: [
            {
              date: new Date(2024, 0, 1),
              open: 150.25,
              high: 152.8,
              low: 149.5,
              close: 152.3,
            },
            {
              date: new Date(2024, 0, 2),
              open: 152.5,
              high: 154.2,
              low: 151.8,
              close: 153.75,
            },
            {
              date: new Date(2024, 0, 3),
              open: 153.8,
              high: 155.4,
              low: 152.9,
              close: 154.2,
            },
            
          ],
          field: "close",
          dateField: "date",
          color: "#ff9800",
        },
      },
    });
</script>