AnyChart
API Reference
Still have questions?
Contact support
Top

class anychart.core.utils.Padding Improve this Doc

Extends: anychart.core.Base

Stores padding values. Can accept numbers and strings. Use anychart.core.utils.Padding#set method to set values.

Methods Overview

Specific settings
set()Sets all offsets.
Size and Position
bottom()Getter for the bottom space.
left()Getter for the left space.
right()Getter for the right space.
top()Getter for the top space.

Methods Description

bottom

Getter for the bottom space.
Returns previously set padding, not the derived pixel value.

Returns:

number | string - The bottom space.
Setter for the bottom space.

Params:

NameTypeDescription
bottomnumber | string | nullBottom space to set.

Returns:

anychart.core.utils.Padding - Self instance for method chaining.

left

Getter for the left space.
Returns previously set padding, not the derived pixel value.

Returns:

number | string - The left space.
Setter for the left space.

Params:

NameTypeDescription
leftnumber | string | nullLeft space to set.

Returns:

anychart.core.utils.Padding - Self instance for method chaining.
Getter for the right space.
Returns previously set padding, not the derived pixel value.

Returns:

number | string - The right space.
Setter for the right space.

Params:

NameTypeDescription
rightnumber | string | nullRight space to set.

Returns:

anychart.core.utils.Padding - Self instance for method chaining.

set

Sets all offsets.

Params:

NameTypeDescription
value1string | number | Array.<(number|string)> | ObjectPadding object or top or top and bottom space.
value2string | numberRight or right and left space.
value3string | numberBottom space.
value4string | numberLeft space.

Returns:

anychart.core.utils.Padding - Self instance for method chaining.

top

Getter for the top space.
Returns previously set padding, not the derived pixel value.

Returns:

number | string - The top space.
Setter for the top space.

Params:

NameTypeDescription
topnumber | string | nullTop space to set.

Returns:

anychart.core.utils.Padding - Self instance for method chaining.