series.pattern.type String
The chart series pattern.
The supported values are:
- "crosshatch"
- "diagonalStripes"
- "dots"
- "grid"
- "verticalStripes"
Example - set the series pattern type
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [ {
pattern: {
type: 'dots'
},
data: [ 1, 2, 3 ]
}]
});
</script>