series.pattern Object
The configuration options of the series pattern.
The pattern inherits the series.color as main color and accepts an optional
background
color.
Example - set a series pattern
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [ {
pattern: {
type: 'crosshatch',
background: 'rgba(170, 170, 170, 0.8)',
},
data: [ 1, 2, 3 ]
}]
});
</script>