Webix datatable multiselect suggest list height

Hello i have datatable with multiselect filter. By default it display 5 options with scroll. Is there a way to increase height of this list. But only in case if there is more than 5 options ?
https://snippet.webix.com/bnieqy36

Hello @roma,

you can change its yCount property:

const list1 = $$("$multiselect1").getList();
list1.define({
  yCount: 10
});

Please, check the result: Code Snippet

@NastassiaM it works thanks