compact

toggles the compact mode of Pivot

boolean compact;

Example

webix.ui({
  view: "pivot",
  url: "https://docs.webix.com/calendar-backend/",
  compact: true // sets to compact mode initially
)};

Related samples

Details

By default Pivot switches to the compact mode when its size is less than or equal to 720px. This can happen during initialization or when the widget or viewport is resized. You can force the compact mode to be set initially through the compact property of the constructor like it's done in the example above.

See also
Back to top