paneDefaults.title.border.colorString(default: "black")
The color of the border. Accepts a valid CSS color string, including hex and rgb.
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
paneDefaults: {
title: {
border: {
color: "red",
width: 2
}
}
},
panes: [
{ name: "main-pane", title: { text: "Pane Title" } }
],
series: [
{ name: "Series 1", data: [1, 2, 3] }
]
});
</script>
In this article