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

Function getAxisStatPerKeyPerAxis

src/coord/axisStatistics.ts:156–164  ·  view source on GitHub ↗
(
    axis: Axis,
    axisStatKey: AxisStatKey
)

Source from the content-addressed store, hash-verified

154}
155
156function getAxisStatPerKeyPerAxis(
157 axis: Axis,
158 axisStatKey: AxisStatKey
159): AxisStatPerKeyPerAxis | NullUndefined {
160 const axisModel = axis.model;
161 const keyed = ecModelCacheFullUpdateInner(getCachePerECFullUpdate(axisModel.ecModel)).keyed;
162 const perKey = keyed && keyed.get(axisStatKey);
163 return perKey && perKey.get(axisModel.uid);
164}
165
166export function getAxisStat(
167 axis: Axis,

Callers 4

getAxisStatFunction · 0.85
eachSeriesOnAxisOnKeyFunction · 0.85
countSeriesOnAxisOnKeyFunction · 0.85
eachKeyOnAxisFunction · 0.85

Calls 2

getCachePerECFullUpdateFunction · 0.90
getMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…