Merge branch 'gridmin' of github.com:kamaradclimber/grafana into kamaradclimber-gridmin

pull/407/merge
Torkel Ödegaard 11 years ago
commit cfc5fa87d0
  1. 3
      CHANGELOG.md
  2. 4
      src/app/dashboards/default.json
  3. 2
      src/app/panels/graphite/module.js

@ -9,6 +9,9 @@
- Fixes to filters and "All" option. It now never uses "*" as value, but all options in a {node1, node2, node3} expression (Issue #228, #359) - Fixes to filters and "All" option. It now never uses "*" as value, but all options in a {node1, node2, node3} expression (Issue #228, #359)
- Fix for InfluxDB query generation with columns containing dots or dashes (Issue #369, #348) - Thanks to @jbripley - Fix for InfluxDB query generation with columns containing dots or dashes (Issue #369, #348) - Thanks to @jbripley
- Improvement to series toggling, CTRL+MouseClick on series name will now hide all others (Issue #350) - Improvement to series toggling, CTRL+MouseClick on series name will now hide all others (Issue #350)
- Graph default setting for Y-Min changed from zero to auto scalling (will not effect existing dashboards). (Issue #386) - thx @kamaradclimber
# 1.5.3 (2014-04-17) # 1.5.3 (2014-04-17)
- Add support for async scripted dashboards (Issue #274) - Add support for async scripted dashboards (Issue #274)

@ -48,7 +48,7 @@
"y_formats": ["short", "short"], "y_formats": ["short", "short"],
"grid": { "grid": {
"max": null, "max": null,
"min": 0 "min": null
}, },
"resolution": 100, "resolution": 100,
"lines": true, "lines": true,
@ -150,4 +150,4 @@
"hide": false "hide": false
}, },
"refresh": false "refresh": false
} }

@ -97,7 +97,7 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
*/ */
grid : { grid : {
max: null, max: null,
min: 0, min: null,
threshold1: null, threshold1: null,
threshold2: null, threshold2: null,
threshold1Color: 'rgba(216, 200, 27, 0.27)', threshold1Color: 'rgba(216, 200, 27, 0.27)',

Loading…
Cancel
Save