mirror of
https://github.com/grafana/grafana.git
synced 2025-01-26 00:06:58 -06:00
Merge pull request #11575 from alexanderzobnin/fix-11498
Histogram: fix invisible highest value bucket
This commit is contained in:
commit
b0349bc795
@ -443,7 +443,8 @@ function graphDirective(timeSrv, popoverSrv, contextSrv) {
|
|||||||
|
|
||||||
// Expand ticks for pretty view
|
// Expand ticks for pretty view
|
||||||
min = Math.floor(min / tickStep) * tickStep;
|
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 = [];
|
ticks = [];
|
||||||
for (let i = min; i <= max; i += tickStep) {
|
for (let i = min; i <= max; i += tickStep) {
|
||||||
|
Loading…
Reference in New Issue
Block a user