series.markers.borderRadiusNumber
The border radius in pixels when type
is set to "roundedRect"
. Defaults to 1/5 of the marker size.
Example - set the chart series markers border radius
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "line",
markers: {
visible: true,
type: "roundedRect",
borderRadius: 2
},
data: [1, 2, 3]
}]
});
</script>
In this article