(
axis: Axis,
axisStatKey: AxisStatKey
)
| 154 | } |
| 155 | |
| 156 | function 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 | |
| 166 | export function getAxisStat( |
| 167 | axis: Axis, |
no test coverage detected
searching dependent graphs…