legend.focusHighlight.border Object

    The border of the focus highlight.

    Example - set the focus highlight options

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