How to position the /\\ of a menu?

When I mouseover menu Actions, how can I position the /\ where I want it to? It is the pointer from the message bubble to the menu… I want to move it more to the left or to the right. How to do this?



		webix.ui({
			container:"areaA",
			view:"menu",
            data:[
              { id:"1",value:"Actions", submenu:[
					{ value:"Status", submenu:[
						"Insert", "Delete", "Update"
					]},
					{ value:"Roles", submenu:[
						"Insert", "Delete", "Update"
					]}
              ]}
			],
            type:{
                subsign:true
            }
		});

Also, how can I control the widths of the submenus? I’m putting in width:100 can nothing happens.

I mean webix_top_point… how can I position more to the left or to the right?

Unfortunately top point cannot be moved.
Submenu width can be set within “config” attribute: http://webix.com/snippet/f81897de

great … thank you.