freezeColumns

toggles the ability to freeze columns

boolean freezeColumns;

Example

webix.ui({
    view: "pivot",
    freezeColumns: false,
    structure: {
        columns: ["year"],
        rows: ["form", "name"],
        ...
    },
    ...
})


Default value:

true

Related samples

Details

By default, the columns specified in the rows array are frozen. This means that if you try to scroll them, they will stay in place. In order to make them scrollable again, set freezeColumns to false.

If you want to customize the frozen column amount in more depth, take a look at the related sample.

Back to top