scroll

enables/disables the scroll bar

boolean|string scroll;

Values

  • "y" (or true)
    enables vertical scroll (the default value)
  • "x"
    enables horizontal scroll
  • "xy"
    enables both scrolls
  • false
    disables both scrolls
  • Example

    webix.ui({
        view:"treemap",
        scroll:"y",
        value: "#value#",
        data: [
            { id:"1", label: "Technology", data:[
                { id:"1.1", value:"50" },
                { id:"1.2", value:"30" },
                { id:"1.3", value:"20" }
            ]}
        ]
    });


    Default value:

    "y"

    Related samples

    See also
    Back to top
    If you have not checked yet, be sure to visit site of our main product Webix ui library and page of TreeMap product.