series.maxSize Number
(default: 100)
The maximum size of the chart bubble series marker.
Example - set the bubble chart series max marker size
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [ {
type: "bubble",
maxSize: 40,
data: [
[1, 2, 3],
[2, 3, 4]
]
}]
});
</script>