graph histogram: fix invisible highest value bucket

This commit is contained in:
Alexander Zobnin 2018-04-12 16:31:47 +03:00 committed by Marcus Efraimsson
parent 4f7791b9fa
commit b16626c3b5
No known key found for this signature in database
GPG Key ID: EBFE0FB04612DD4A

View File

@ -443,7 +443,8 @@ function graphDirective(timeSrv, popoverSrv, contextSrv) {
// Expand ticks for pretty view
min = Math.floor(min / tickStep) * tickStep;
max = Math.ceil(max / tickStep) * tickStep;
// 1.01 is 101% - ensure we have enough space for last bar
max = Math.ceil(max * 1.01 / tickStep) * tickStep;
ticks = [];
for (let i = min; i <= max; i += tickStep) {