layers.minSize Number (default: 0)

The minimum symbol size for bubble layer symbols.

Setting non-zero value will distort symbol area to value ratio.

Example - Set minSize for bubble layer

<div id="map"></div>
<script>
    $("#map").kendoMap({
        layers: [{
            type: "bubble",
            minSize: 10,
            dataSource: {
                data: [{
                    "location": [42, 12], "value": 10
                }, {
                    "location": [45, 15], "value": 25
                }]
            }
        }]
    });
</script>
In this article