Added missing text panel, added hover to pie and histogram
This commit is contained in:
@@ -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();
|
||||
})
|
||||
Reference in New Issue
Block a user