Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/chartjs/Chart.js
/ determineDataLimits
Method
determineDataLimits
docs/scripts/log2.js:15–19 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
13
}
14
15
determineDataLimits() {
16
const
{min, max} = this.getMinMax(true);
17
this.min = isFinite(min) ? Math.max(0, min) : null;
18
this.max = isFinite(max) ? Math.max(0, max) : null;
19
}
20
21
buildTicks() {
22
const
ticks = [];
Callers
nothing calls this directly
Calls
1
getMinMax
Method · 0.65
Tested by
no test coverage detected