series.pattern.color String
The color of the pattern. Defaults to series color.
Example - set the series pattern color
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [ {
pattern: {
type: 'dots',
color: '#f00'
},
data: [ 1, 2, 3 ]
}]
});
</script>