padding
sets paddings of the chart content
string|object padding;
Example
webix.ui({
view:"chart",
...
padding:{
top: 6,
left:10
}
})
Default value:
{left: 50, right: 20, top: 35, bottom: 40}
Related samples
Details
The available attributes of the property are:
- top - (number) the top padding
- bottom - (number) the bottom padding
- left - (number) the left padding
- right - (number) the right padding
See also
Back to top