Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Enterprise Open source

PanelEvents variable

PanelEvents variable

Signature

typescript
PanelEvents: {
    refresh: import("../events/types").AppEvent<undefined>;
    componentDidMount: import("../events/types").AppEvent<undefined>;
    dataReceived: import("../events/types").AppEvent<any[]>;
    dataError: import("../events/types").AppEvent<DataQueryError>;
    dataFramesReceived: import("../events/types").AppEvent<DataFrame[]>;
    dataSnapshotLoad: import("../events/types").AppEvent<any[]>;
    editModeInitialized: import("../events/types").AppEvent<undefined>;
    initPanelActions: import("../events/types").AppEvent<AngularPanelMenuItem[]>;
    initialized: import("../events/types").AppEvent<undefined>;
    panelTeardown: import("../events/types").AppEvent<undefined>;
    render: import("../events/types").AppEvent<any>;
}

Import

typescript
import { PanelEvents } from '@grafana/data';