series.whiskers.colorString
The color of the whiskers.
Example - set the series whiskers color
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "boxPlot",
data: [
{ lower: 1, q1: 2, median: 3, q3: 4, upper: 5 }
],
whiskers: {
color: "#ff6600"
}
}]
});
</script>