(registers: EChartsExtensionInstallRegisters)
| 190 | } |
| 191 | |
| 192 | export function registerBoxplotAxisHandlers(registers: EChartsExtensionInstallRegisters) { |
| 193 | callOnlyOnce(registers, function () { |
| 194 | const axisStatKey = makeAxisStatKey(SERIES_TYPE_BOXPLOT); |
| 195 | requireAxisStatistics( |
| 196 | registers, |
| 197 | { |
| 198 | key: axisStatKey, |
| 199 | seriesType: SERIES_TYPE_BOXPLOT, |
| 200 | getMetrics: createMetricsNonOrdinalLinearPositiveMinGap, |
| 201 | } |
| 202 | ); |
| 203 | registerAxisContainShapeHandler( |
| 204 | axisStatKey, |
| 205 | createBandWidthBasedAxisContainShapeHandler(axisStatKey) |
| 206 | ); |
| 207 | }); |
| 208 | } |
no test coverage detected
searching dependent graphs…