mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Graph: Allow override decimals to fully override (#16414)
Override decimals did not fully override auto scaling logic Fixes #16068
This commit is contained in:
parent
8a4a6b4dc1
commit
6ef35f0a8e
3
public/vendor/flot/jquery.flot.js
vendored
3
public/vendor/flot/jquery.flot.js
vendored
@ -1763,8 +1763,11 @@ Licensed under the MIT license.
|
||||
axis.delta = delta;
|
||||
axis.tickDecimals = Math.max(0, maxDec != null ? maxDec : dec);
|
||||
axis.tickSize = opts.tickSize || size;
|
||||
|
||||
// grafana addition
|
||||
if (opts.tickDecimals === null && opts.tickDecimals === undefined) {
|
||||
axis.scaledDecimals = axis.tickDecimals - Math.floor(Math.log(axis.tickSize) / Math.LN10);
|
||||
}
|
||||
|
||||
// Time mode was moved to a plug-in in 0.8, and since so many people use it
|
||||
// we'll add an especially friendly reminder to make sure they included it.
|
||||
|
Loading…
Reference in New Issue
Block a user