series.markers.border Object|Function
The border of the markers.
Example - set the chart series markers border
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "line",
markers: {
visible: true,
border: {
width: 2,
color: "green"
}
},
data: [1, 2, 3]
}]
});
</script>
series.markers.border.color String|Function
(default: "black")
The color of the border. Accepts a valid CSS color string, including hex and rgb.
Example - set the chart series markers border color
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "line",
markers: {
visible: true,
border: {
width: 2,
color: "green"
}
},
data: [1, 2, 3]
}]
});
</script>
series.markers.border.width Number|Function
(default: 2)
The width of the border in pixels.
Example - set the chart series markers border width
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "line",
markers: {
visible: true,
border: {
width: 2
}
},
data: [1, 2, 3]
}]
});
</script>
series.markers.borderRadius Number
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>