MCPcopy Index your code
hub / github.com/apache/echarts / getAxisStat

Function getAxisStat

src/coord/axisStatistics.ts:166–176  ·  view source on GitHub ↗
(
    axis: Axis,
    axisStatKey: AxisStatKey
    // Return: Never return null/undefined.
)

Source from the content-addressed store, hash-verified

164}
165
166export function getAxisStat(
167 axis: Axis,
168 axisStatKey: AxisStatKey
169 // Return: Never return null/undefined.
170): AxisStatisticsResult {
171 if (__DEV__) {
172 assert(axisStatKey != null);
173 validateInputAxis(axis);
174 }
175 return wrapStatResult(getAxisStatPerKeyPerAxis(axis, axisStatKey));
176}
177
178export function getAxisStatBySeries(
179 axis: Axis,

Callers 1

Calls 3

wrapStatResultFunction · 0.85
getAxisStatPerKeyPerAxisFunction · 0.85
assertFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…