Added missing text panel, added hover to pie and histogram

This commit is contained in:
Rashid Khan
2013-02-05 19:20:32 -07:00
parent 4b9310ea88
commit 70f6a29700
5 changed files with 56 additions and 6 deletions
+17
View File
@@ -0,0 +1,17 @@
angular.module('kibana.text', [])
.controller('text', function($scope, $rootScope) {
var _id = _.uniqueId();
// Set and populate defaults
var _d = {
group : "default",
content : "",
'fontsize': "100%"
}
_.defaults($scope.panel,_d);
$scope.init = function() {
}
$scope.init();
})