Explorar o código

fix for markers in modes other than count

Rashid Khan %!s(int64=12) %!d(string=hai) anos
pai
achega
1b67aa5eb9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/app/panels/histogram/module.js

+ 1 - 1
src/app/panels/histogram/module.js

@@ -245,7 +245,7 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
             $scope.panel.error = "In " + $scope.panel.mode + " mode a field must be specified";
             return;
           }
-          facet = facet.keyField($scope.panel.time_field).valueField($scope.panel.value_field);
+          facet = facet.keyField($scope.panel.time_field).valueField($scope.panel.value_field).global(true);
         }
         facet = facet.interval(_interval).facetFilter($scope.ejs.QueryFilter(query));
         request = request.facet(facet)