paneDefaults.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: {
border: {
color: "red",
width: 2
}
},
series: [
{ name: "Series 1", data: [1, 2, 3] }
]
});
</script>