Commit 487aa1f2 by Torkel Ödegaard

Added hideAxes and hideYAxis mapping support for png renderer. #22

parent be9ab15c
......@@ -177,6 +177,8 @@ function (angular, $, kbn, moment, _) {
url += scope.panel.legend ? '' : '&hideLegend=true';
url += scope.panel.grid.min ? '&yMin=' + scope.panel.grid.min : '';
url += scope.panel.grid.max ? '&yMax=' + scope.panel.grid.max : '';
url += scope.panel['x-axis'] ? '' : '&hideAxes=true';
url += scope.panel['y-axis'] ? '' : '&hideYAxis=true';
switch(scope.panel.nullPointMode) {
case 'connected':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment