@grafana/data#eventFactory TypeScript Examples

The following examples show how to use @grafana/data#eventFactory. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
submenuVisibilityChanged = eventFactory<boolean>('submenu-visibility-changed')
Example #2
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
toggleSidemenuMobile = eventFactory('toggle-sidemenu-mobile')
Example #3
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
toggleSidemenuHidden = eventFactory('toggle-sidemenu-hidden')
Example #4
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
playlistStarted = eventFactory('playlist-started')
Example #5
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
playlistStopped = eventFactory('playlist-stopped')
Example #6
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
toggleKioskMode = eventFactory<ToggleKioskModePayload>('toggle-kiosk-mode')
Example #7
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
toggleViewMode = eventFactory('toggle-view-mode')
Example #8
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
timeRangeUpdated = eventFactory<TimeRange>('time-range-updated')
Example #9
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
repeatsProcessed = eventFactory('repeats-processed')
Example #10
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
rowExpanded = eventFactory('row-expanded')
Example #11
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
rowCollapsed = eventFactory('row-collapsed')
Example #12
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
templateVariableValueUpdated = eventFactory('template-variable-value-updated')
Example #13
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
graphHoverClear = eventFactory('graph-hover-clear')
Example #14
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
dataFramesReceived = eventFactory<DataFrame[]>('data-frames-received')
Example #15
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
graphClicked = eventFactory<GraphClickedPayload>('graph-click')
Example #16
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
thresholdChanged = eventFactory<ThresholdChangedPayload>('threshold-changed')
Example #17
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
zoomOut = eventFactory<number>('zoom-out')
Example #18
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
shiftTime = eventFactory<number>('shift-time')
Example #19
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
elasticQueryUpdated = eventFactory('elastic-query-updated')
Example #20
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
layoutModeChanged = eventFactory<string>('layout-mode-changed')
Example #21
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
jsonDiffReady = eventFactory('json-diff-ready')
Example #22
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
closeTimepicker = eventFactory('closeTimepicker')
Example #23
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
routeUpdated = eventFactory('$routeUpdate')
Example #24
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
searchQuery = eventFactory('search-query')
Example #25
Source File: PanelModel.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
panelAdded = eventFactory<PanelModel | undefined>('panel-added')
Example #26
Source File: PanelModel.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
panelRemoved = eventFactory<PanelModel | undefined>('panel-removed')
Example #27
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
showDashSearch = eventFactory<ShowDashSearchPayload>('show-dash-search')
Example #28
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
hideDashSearch = eventFactory('hide-dash-search')
Example #29
Source File: events.ts    From grafana-chinese with Apache License 2.0 5 votes vote down vote up
hideDashEditor = eventFactory('hide-dash-editor')