@@ -230,17 +230,17 @@ function (angular, _, kbn) {
this.addAllOption = function(variable) {
var allValue = '';
switch(variable.allFormat) {
- case 'wildcard':
- allValue = '*';
+ case 'wildcard':
+ allValue = '*';
break;
- case 'regex wildcard':
- allValue = '.*';
+ case 'regex wildcard':
+ allValue = '.*';
- case 'regex values':
- allValue = '(' + _.pluck(variable.options, 'text').join('|') + ')';
+ case 'regex values':
+ allValue = '(' + _.pluck(variable.options, 'text').join('|') + ')';
- default:
- allValue = '{';
+ default:
+ allValue = '{';
allValue += _.pluck(variable.options, 'text').join(',');
allValue += '}';
}
@@ -175,7 +175,8 @@ function (angular, app, $, _, kbn, moment, TimeSeries, PanelMeta) {
$scope.seriesHandler = function(seriesData, index) {
var datapoints = seriesData.datapoints;
var alias = seriesData.target;
- var color = $scope.panel.aliasColors[alias] || $rootScope.colors[index];
+ var colorIndex = index % $rootScope.colors.length;
+ var color = $scope.panel.aliasColors[alias] || $rootScope.colors[colorIndex];
var series = new TimeSeries({
datapoints: datapoints,