title.border Object
The border of the title.
Example
$("#chart").kendoChart({
// set border options on the title
title: {
border: {
// set the border color to a dark blue
color: "#336699",
// set the width of the border to 2 pixels
width: 2,
// set the border style to long dashes
dashType: "longDash"
}
}
});