Set filter option in pivot using the structure

I know I can set the structure/filters to use using the following:

view:"pivot",
structure: {
    filters: [
        { name: "name", type:"select" },
        { name: "continent", type: "text" }
    ]
}

Is it possible to set the actual text of the filter? For instance, I would like to do something like this:

view:"pivot",
structure: {
    filters: [
        { name: "name", type:"select" },
        { name: "continent", type: "text", value="Africa" }
    ]
}

How can I achieve this?

Unfortunately, for now it’s not possible.

Thanks L, not even if I use JavaScript after the pivot initialized the data?

@johan3 in fact, such feature was added in the latest update, I’m really sorry for misinforming you. It works just as you expected:

http://webix.com/snippet/0608ef22

Also, we will add this information to the Pivot’s docs.

Excellent! Thanks so much