|
|
@@ -46,11 +46,11 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
|
|
|
src:'app/panels/graphite/editor.html'
|
|
|
},
|
|
|
{
|
|
|
- title:'Axis & Legends',
|
|
|
+ title:'Axes & Grid',
|
|
|
src:'app/panels/graphite/axisEditor.html'
|
|
|
},
|
|
|
{
|
|
|
- title:'Style',
|
|
|
+ title:'Display Styles',
|
|
|
src:'app/panels/graphite/styleEditor.html'
|
|
|
}
|
|
|
],
|
|
|
@@ -465,6 +465,11 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
|
|
|
$scope.render();
|
|
|
};
|
|
|
|
|
|
+ $scope.toggleGridMinMax = function(key) {
|
|
|
+ $scope.panel.grid[key] = _.toggle($scope.panel.grid[key], null, 0);
|
|
|
+ $scope.render();
|
|
|
+ };
|
|
|
+
|
|
|
$scope.updateColumnSpan = function(span) {
|
|
|
$scope.panel.span = span;
|
|
|
$timeout($scope.render);
|