dir

sets the direction of resizing

string dir;

Example

var resizeStick = webix.ui.resizearea({
        container:"box",
        dir:"x",
        ...
});

Details

The parameter can take only one of a predefined set of values.
The predefined values are:

  • 'x' - horizontal resizing
  • 'y' - vertical resizing
See also
Back to top