mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Graph: Series hide/show toggle changed to be default exclusive, so clicking on a series name will show only that series. (SHIFT or meta)+click will toggle hide/show. Closes #1007
This commit is contained in:
parent
10ea140358
commit
ecdcd10612
@ -12,7 +12,9 @@
|
|||||||
- [Issue #938](https://github.com/grafana/grafana/issues/938). Panel: Plugin panels now reside outside of app/panels directory
|
- [Issue #938](https://github.com/grafana/grafana/issues/938). Panel: Plugin panels now reside outside of app/panels directory
|
||||||
- [Issue #952](https://github.com/grafana/grafana/issues/952). Help: Shortcut "?" to open help modal with list of all shortcuts
|
- [Issue #952](https://github.com/grafana/grafana/issues/952). Help: Shortcut "?" to open help modal with list of all shortcuts
|
||||||
- [Issue #991](https://github.com/grafana/grafana/issues/991). ScriptedDashboard: datasource services are now available in scripted dashboards, you can query datasource for metric keys, generate dashboards, and even save them in a scripted dashboard (see scripted_gen_and_save.js for example)
|
- [Issue #991](https://github.com/grafana/grafana/issues/991). ScriptedDashboard: datasource services are now available in scripted dashboards, you can query datasource for metric keys, generate dashboards, and even save them in a scripted dashboard (see scripted_gen_and_save.js for example)
|
||||||
- [Issue #716](https://github.com/grafana/grafana/issues/716). MetricsEditors: Ability to reorder metric queries
|
|
||||||
|
**Changes**
|
||||||
|
- [Issue #1007](https://github.com/grafana/grafana/issues/1007). Graph: Series hide/show toggle changed to be default exclusive, so clicking on a series name will show only that series. (SHIFT or meta)+click will toggle hide/show.
|
||||||
|
|
||||||
**OpenTSDB**
|
**OpenTSDB**
|
||||||
- [Issue #930](https://github.com/grafana/grafana/issues/930). OpenTSDB: Adding counter max and counter reset value to open tsdb query editor, thx @rsimiciuc
|
- [Issue #930](https://github.com/grafana/grafana/issues/930). OpenTSDB: Adding counter max and counter reset value to open tsdb query editor, thx @rsimiciuc
|
||||||
|
@ -276,14 +276,14 @@ function (angular, app, $, _, kbn, moment, TimeSeries) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
$scope.toggleSeries = function(serie, event) {
|
$scope.toggleSeries = function(serie, event) {
|
||||||
if ($scope.hiddenSeries[serie.alias]) {
|
|
||||||
delete $scope.hiddenSeries[serie.alias];
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$scope.hiddenSeries[serie.alias] = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (event.ctrlKey || event.metaKey || event.shiftKey) {
|
if (event.ctrlKey || event.metaKey || event.shiftKey) {
|
||||||
|
if ($scope.hiddenSeries[serie.alias]) {
|
||||||
|
delete $scope.hiddenSeries[serie.alias];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$scope.hiddenSeries[serie.alias] = true;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
$scope.toggleSeriesExclusiveMode(serie);
|
$scope.toggleSeriesExclusiveMode(serie);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user