[]
        
(Showing Draft Content)

dashboard.VisualNS.ContextMenuService

类: ContextMenuService

dashboard.VisualNS.ContextMenuService

Table of contents

构造方法

方法

构造方法

constructor

new ContextMenuService()

方法

hide

hide(): void

隐藏上下文菜单。

返回值

void

示例代码

//隐藏,当用户想要关闭上下文菜单时。
//注意:保留、排除、钻取、跳转操作之后,上下文菜单会默认关闭。

this.host.contextMenuService.hide();

show

show(config): void

显示上下文菜单。

参数

名称 类型
config IContextMenuConfig

返回值

void

示例代码

this.host.contextMenuService.show({
	position: { 
	 x: e.clientX, 
	 y: e.clientY 
	},
});