Documentation

padding

sets paddings of the chart content

object padding;

Example

webix.ui({
    view:"chart",
    ...
    padding:{
        top: 6,
        left:10
    }
})

See also

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
Back to top