padding property

dynamic padding

Set padding for y axis. You can set padding for y axis to create more space on the edge of the axis. This option accepts object and it can include top and bottom. top, bottom will be treated as pixels.

Implementation

external dynamic /*{
      top?: number;
      bottom?: number;
  }*/
    get padding;
void padding=(dynamic v)

Implementation

external set padding(
    dynamic
        /*{
      top?: number;
      bottom?: number;
  }*/
        v);