mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fields panel documentation
This commit is contained in:
parent
af89762021
commit
76f4788f72
@ -1,3 +1,22 @@
|
||||
/*
|
||||
|
||||
## Fields
|
||||
|
||||
Allows for enabling and disabling of fields in the table panel as well as a
|
||||
micro anaylsis panel for analyzing the events in the table panel
|
||||
|
||||
### Parameters
|
||||
* style :: a hash containing css styles
|
||||
* arrange :: the layout pf the panel 'horizontal' or 'vertical'
|
||||
* micropanel_position :: where to place the micropanel in relation to the field
|
||||
|
||||
### Group Events
|
||||
#### Recieves
|
||||
* table_documents :: An object containing the documents in the table panel
|
||||
*** Sends
|
||||
* fields :: an object containing the sort order, existing fields and selected fields
|
||||
|
||||
*/
|
||||
angular.module('kibana.fields', [])
|
||||
.controller('fields', function($scope, eventBus, $timeout) {
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
/*
|
||||
|
||||
## Timepicker
|
||||
|
||||
The timepicker panel is used to select time ranges and inform other panel of
|
||||
@ -25,6 +26,7 @@ a pattern
|
||||
* get_time :: Receives an object containing a $id, broadcasts back to it.
|
||||
|
||||
*/
|
||||
|
||||
angular.module('kibana.timepicker', [])
|
||||
.controller('timepicker', function($scope, eventBus, $timeout, timer, $http) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user