mirror of https://github.com/grafana/grafana.git
Fixed render issue when resizing rows
This commit is contained in:
parent
107cf6b817
commit
6ddb642790
|
|
@ -116,7 +116,6 @@ angular.module('kibana.dashcontrol', [])
|
||||||
}
|
}
|
||||||
|
|
||||||
$scope.elasticsearch_save = function(type) {
|
$scope.elasticsearch_save = function(type) {
|
||||||
console.log(type)
|
|
||||||
// Clone object so we can modify it without influencing the existing obejct
|
// Clone object so we can modify it without influencing the existing obejct
|
||||||
var save = _.clone($scope.dashboards)
|
var save = _.clone($scope.dashboards)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
<kibana-panel ng-controller='histogram' style="height:{{row.height}}">
|
<kibana-panel ng-controller='histogram' style="height:{{row.height}}">
|
||||||
<div histogram params="{{panel}}" style="height:{{row.height}}"></div>
|
<div histogram params="{{panel}}" style="height:{{row.height}};position:relative"></div>
|
||||||
</kibana-panel>
|
</kibana-panel>
|
||||||
|
|
@ -105,7 +105,8 @@ angular.module('kibana.histogram', [])
|
||||||
data: {
|
data: {
|
||||||
label: $scope.panel.query[k].label || k,
|
label: $scope.panel.query[k].label || k,
|
||||||
data: data,
|
data: data,
|
||||||
}
|
},
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!(_.isUndefined($scope.panel.query[k].color)))
|
if (!(_.isUndefined($scope.panel.query[k].color)))
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
<kibana-panel ng-controller='pie'>
|
<kibana-panel ng-controller='pie'>
|
||||||
<div pie params="{{panel}}" style="height:{{row.height}}"></div>
|
<div pie params="{{panel}}" style="height:{{row.height}};position:relative"></div>
|
||||||
</kibana-panel>
|
</kibana-panel>
|
||||||
Loading…
Reference in New Issue