DashboardEventHandler
Home > @gooddata/sdk-ui-dashboard > DashboardEventHandler
DashboardEventHandler interface
Event handlers can be registered for a dashboard.
Signature:
export interface DashboardEventHandler<TEvents extends DashboardEvents | ICustomDashboardEvent = any>
Remarks
All events that occur during dashboard processing will be evaluated against all registered handlers and if evaluation succeeds they will be dispatched to the handler function.
Properties
Property | Type | Description |
---|---|---|
eval | DashboardEventEvalFn | Specify event evaluation function. |
handler | DashboardEventHandlerFn<TEvents> | The actual event handling function. |