legend.border Object
The border of the legend.
Example
$("#chart").kendoChart({
legend: {
border: {
// set the border width to 2 pixels
width: 2,
// set the color to grey
color: "grey",
// set the dash type to solid. this is the default so we could leave this line out.
dashType: "solid"
}
},
...
});