series.whiskersObject

The chart series whiskers configuration.

The appearance settings for the BoxPlot whiskers.

Example - configure the series whiskers

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [{
    type: "boxPlot",
    data: [
      { lower: 1, q1: 2, median: 3, q3: 4, upper: 5 }
    ],
    whiskers: {
      color: "blue",
      width: 2,
      opacity: 0.8
    }
  }]
});
</script>