Private GIT

Skip to content
Snippets Groups Projects
Commit 1906b357 authored by Kevin Duret's avatar Kevin Duret
Browse files

#5130 Fix chart y max scale value

parent 981e755d
Branches
Tags
No related merge requests found
......@@ -159,10 +159,10 @@
};
/* Add Y axis range */
if (data.limits.min) {
axis.y.min = data.limits.min;
axis.y.min = numeral(data.limits.min).value();
}
if (data.limits.max) {
axis.y.max = data.limits.max;
axis.y.max = numeral(data.limits.max).value();
}
var parsedData = this.buildMetricData(data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment