New to Kendo UI for jQueryStart a free 30-day trial

The border of the focus highlight.

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  seriesDefaults: {
    focusHighlight: {
      border: {
        color: 'blue',
        width: 3,
        dashType: 'dash',
        opacity: 0.5
      }
    }
  },
  series: [
    { type: "donut",  data: [3, 4] }
  ]
});
</script>

The color of the focus highlight border. Accepts a valid CSS color string, including hex and rgb.

Default: "black"

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  seriesDefaults: {
    focusHighlight: {
      border: {
        color: 'blue'
      }
    }
  },
  series: [
    { type: "donut",  data: [3, 4] }
  ]
});
</script>

The dash type of the focus highlight border.

The following dash types are supported:

  • "dash" - a line consisting of dashes
  • "dashDot" - a line consisting of a repeating pattern of dash-dot
  • "dot" - a line consisting of dots
  • "longDash" - a line consisting of a repeating pattern of long-dash
  • "longDashDot" - a line consisting of a repeating pattern of long-dash-dot
  • "longDashDotDot" - a line consisting of a repeating pattern of long-dash-dot-dot
  • "solid" - a solid line

Default: "solid"

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  seriesDefaults: {
    focusHighlight: {
      border: {
        dashType: 'dash'
      }
    }
  },
  series: [
    { type: "donut",  data: [3, 4] }
  ]
});
</script>

The opacity of the focus highlight border.

Default: 1

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  seriesDefaults: {
    focusHighlight: {
      border: {
        opacity: 0.5
      }
    }
  },
  series: [
    { type: "donut",  data: [3, 4] }
  ]
});
</script>

The width of the focus highlight border in pixels.

Default: 2

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  seriesDefaults: {
    focusHighlight: {
      border: {
        width: 3
      }
    }
  },
  series: [
    { type: "donut",  data: [3, 4] }
  ]
});
</script>