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

Function registerBoxplotAxisHandlers

src/chart/boxplot/boxplotLayout.ts:192–208  ·  view source on GitHub ↗
(registers: EChartsExtensionInstallRegisters)

Source from the content-addressed store, hash-verified

190}
191
192export 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}

Callers 1

installFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…