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