layout

defines the way of placement for timeline items

string layout;

Values

  • "y"
    vertical layout
  • "x"
    horizontal layout
  • Example

    webix.ui({
        view:"timeline",
        layout: "x", // horizontal mode is set initially
        data:time_data
    });


    Default value:

    "y"

    Related samples

    See also
  • Articles
  • Back to top