series.patternObject
The configuration options of the series pattern.
The pattern inherits the
series.color
as main color and accepts an optionalbackground
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>
In this article