(
ecModel: GlobalModel,
cb: (
perKeyPerAxis: AxisStatPerKeyPerAxis,
axisStatKey: AxisStatKey,
axisModelUid: AxisBaseModel['uid']
) => void
)
| 195 | } |
| 196 | |
| 197 | function eachKeyEachAxis( |
| 198 | ecModel: GlobalModel, |
| 199 | cb: ( |
| 200 | perKeyPerAxis: AxisStatPerKeyPerAxis, |
| 201 | axisStatKey: AxisStatKey, |
| 202 | axisModelUid: AxisBaseModel['uid'] |
| 203 | ) => void |
| 204 | ): void { |
| 205 | const keyed = ecModelCacheFullUpdateInner(getCachePerECFullUpdate(ecModel)).keyed; |
| 206 | keyed && keyed.each(function (perKey, axisStatKey) { |
| 207 | perKey.each(function (perKeyPerAxis, axisModelUid) { |
| 208 | cb(perKeyPerAxis, axisStatKey, axisModelUid); |
| 209 | }); |
| 210 | }); |
| 211 | } |
| 212 | |
| 213 | function wrapStatResult(record: AxisStatPerKeyPerAxis | NullUndefined): AxisStatisticsResult { |
| 214 | return { |
no test coverage detected
searching dependent graphs…