legend.padding Number | Object
(default: 5)
The padding of the legend.
Example
// sets the top, right, bottom and left padding to 3px.
$("#chart").kendoChart({
legend: {
// sets the top, right, bottom and left padding to 3px.
padding: 3
},
...
});
//
$("#chart").kendoChart({
legend: {
// sets the top and left padding to 1px
// padding right and bottom are with 5px (by default)
padding: { top: 1, left: 1 }
},
...
});