(
axis: Axis,
axisStatKey: AxisStatKey
// Return: Never return null/undefined.
)
| 164 | } |
| 165 | |
| 166 | export 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 | |
| 178 | export function getAxisStatBySeries( |
| 179 | axis: Axis, |
no test coverage detected
searching dependent graphs…