TooltipOptions
Configuration model for displaying messages on the screen
Signature:
export interface TooltipOptions
Remarks
Specifies the message and disappear time when displaying a message at a specific location on the screen.
gridView.showMessage({message:"user message", hideDuration: 5000}, {itemIndex: 0, column: "column"});
// or
gridView.showMessage("user Position\nuser Message", 100, 100);Properties
| Property | Type | Description |
|---|---|---|
| hideDuration | number | Specifies the time in ms that the message is displayed and disappears automatically. |
| message | string | Specifies the message to be displayed on the screen. |
| styleName | string | Specifies the class of the tooltip element. |
Properties Desc
hideDuration
Specifies the time in ms that the message is displayed and disappears automatically.
Type - number
message
Specifies the message to be displayed on the screen.
Type - string
styleName
Specifies the class of the tooltip element.
Type - string