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

Function brushModelNotControll

src/component/brush/visualEncoding.ts:314–323  ·  view source on GitHub ↗
(brushModel: BrushModel, seriesIndex: number)

Source from the content-addressed store, hash-verified

312}
313
314function brushModelNotControll(brushModel: BrushModel, seriesIndex: number): boolean {
315 const seriesIndices = brushModel.option.seriesIndex;
316 return seriesIndices != null
317 && seriesIndices !== 'all'
318 && (
319 zrUtil.isArray(seriesIndices)
320 ? zrUtil.indexOf(seriesIndices, seriesIndex) < 0
321 : seriesIndex !== seriesIndices
322 );
323}
324
325type AreaBoundingRectBuilder = (area: BrushAreaParamInternal) => BoundingRect;
326const boundingRectBuilders: Partial<Record<BrushType, AreaBoundingRectBuilder>> = {

Callers 1

stepAOthersFunction · 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…