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

Function isLabelLayoutDirty

src/label/labelLayoutHelper.ts:118–123  ·  view source on GitHub ↗
(
    labelGeometry: Partial<LabelGeometry>, dirtyBits?: number
)

Source from the content-addressed store, hash-verified

116}
117
118function isLabelLayoutDirty(
119 labelGeometry: Partial<LabelGeometry>, dirtyBits?: number
120): boolean {
121 dirtyBits = dirtyBits || LABEL_LAYOUT_DIRTY_ALL;
122 return labelGeometry.dirty == null || !!(labelGeometry.dirty & dirtyBits);
123}
124
125/**
126 * [CAUTION]

Callers 2

ensureOBBFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…