Skip to content

Commit

Permalink
fixed 0 height bars
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashid Khan committed Aug 23, 2013
1 parent 79ed63d commit ada84c4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion js/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ angular.module('kibana.services', [])
self.map(indices).then(function(result) {
self.mapping = _.extend(self.mapping,result);
self.list = mapFields(self.mapping);
console.log(self.mapping);
});
// Otherwise just use the cached mapping
} else {
Expand Down
2 changes: 1 addition & 1 deletion panels/histogram/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ angular.module('kibana.histogram', [])
lineWidth: scope.panel.linewidth,
steps: false
},
bars: { show: scope.panel.bars, fill: 1, barWidth: barwidth/1.8, zero: false },
bars: { show: scope.panel.bars, fill: 1, lineWidth:0, barWidth: barwidth/1.7, zero: false },
points: { show: scope.panel.points, fill: 1, fillColor: false, radius: 5},
shadowSize: 1
},
Expand Down

0 comments on commit ada84c4

Please sign in to comment.