separates the label from the Pivot filter and removes limits on the label size
webix.ui({
view:"pivot",
data:pivot_dataset,
separateLabel:false,
max: true,
structure: {
rows: ["form", "name"],
columns: ["year"],
values: [{ name:"oil", operation:["min","sum"]}],
filters:[]
}
});
added in version 5.2
Back to top