toggles the ability to freeze columns
webix.ui({
view: "pivot",
freezeColumns: false,
structure: {
columns: ["year"],
rows: ["form", "name"],
...
},
...
})
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