how to set menu height?

use css
.webix_list_item { margin: 0px; padding: 0px; height: 26px; line-height: 26px; }
or
webix.ui({ view:"menu", height:26, ......
don’t work.

Try to set the height in type:

webix.ui({
view: “menu”,

type:{
height: 26
}
})

thanks, it works now.