Added statistical modes to histogram panel

This commit is contained in:
Rashid Khan
2013-05-13 13:31:59 -07:00
parent 45c9bb8f38
commit 906f3a3ca8
8 changed files with 53 additions and 22 deletions
+3 -1
View File
@@ -9,6 +9,7 @@ angular.module('kibana.controllers', [])
title: "",
editable: true,
rows: [],
last: null
}
$scope.init = function() {
@@ -24,7 +25,8 @@ angular.module('kibana.controllers', [])
// Load dashboard by event
eventBus.register($scope,'dashboard', function(event,dashboard){
$scope.dashboards = dashboard;
$scope.dashboards = dashboard.dashboard;
$scope.dashboards.last = dashboard.last;
_.defaults($scope.dashboards,_d)
})