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

Function enableScaleMapperFreeze

src/scale/scaleMapper.ts:342–349  ·  view source on GitHub ↗
(host: ScaleMapper, subMapper: ScaleMapper)

Source from the content-addressed store, hash-verified

340}
341
342export function enableScaleMapperFreeze(host: ScaleMapper, subMapper: ScaleMapper): void {
343 host.freeze = noop;
344 if (__DEV__) {
345 host.freeze = function () {
346 subMapper.freeze();
347 };
348 };
349}
350
351export function getScaleExtentForTickUnsafe(mapper: ScaleMapper): number[] {
352 return mapper.getExtentUnsafe(SCALE_EXTENT_KIND_EFFECTIVE, SCALE_MAPPER_DEPTH_OUT_OF_BREAK);

Callers 3

constructorMethod · 0.90
constructorMethod · 0.90
constructorMethod · 0.90

Calls 1

freezeMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…