mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Fix for exclusive series toggling (hold down CTRL, SHIFT or META key) and left click a series for exclusive toggling
CTRL does not work on MAC OSX but SHIFT or META should (depending on browser) (Closes #350, Fixes #472)
This commit is contained in:
parent
af1855601b
commit
ea84149c87
@ -20,6 +20,8 @@ vNext
|
|||||||
- Legend Current value did not display when value was zero, Fixes #460
|
- Legend Current value did not display when value was zero, Fixes #460
|
||||||
- Fix to series toggling bug that caused annotations to be hidden when toggling (hiding) series. Fixes #328
|
- Fix to series toggling bug that caused annotations to be hidden when toggling (hiding) series. Fixes #328
|
||||||
- Fix for graphite function selection menu that some times draws outside screen. It now displays upward (Fixes #293)
|
- Fix for graphite function selection menu that some times draws outside screen. It now displays upward (Fixes #293)
|
||||||
|
- Fix for exclusive series toggling (hold down CTRL, SHIFT or META key) and left click a series for exclusive toggling
|
||||||
|
CTRL does not work on MAC OSX but SHIFT or META should (depending on browser) (Closes #350, Fixes #472)
|
||||||
|
|
||||||
# 1.5.4 (2014-05-13)
|
# 1.5.4 (2014-05-13)
|
||||||
### New features and improvements
|
### New features and improvements
|
||||||
|
@ -264,7 +264,7 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
|
|||||||
.then($scope.dataHandler)
|
.then($scope.dataHandler)
|
||||||
.then(null, function(err) {
|
.then(null, function(err) {
|
||||||
$scope.panelMeta.loading = false;
|
$scope.panelMeta.loading = false;
|
||||||
$scope.panel.error = err.message || "Graphite HTTP Request Error";
|
$scope.panel.error = err.message || "Timeseries data request error";
|
||||||
$scope.inspector.error = err;
|
$scope.inspector.error = err;
|
||||||
$scope.render([]);
|
$scope.render([]);
|
||||||
});
|
});
|
||||||
@ -356,7 +356,7 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
|
|||||||
$scope.hiddenSeries[serie.alias] = true;
|
$scope.hiddenSeries[serie.alias] = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (event.ctrlKey) {
|
if (event.ctrlKey || event.metaKey || event.shiftKey) {
|
||||||
$scope.toggleSeriesExclusiveMode(serie);
|
$scope.toggleSeriesExclusiveMode(serie);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user