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

Function fadeOutDisplayable

src/animation/basicTransition.ts:288–301  ·  view source on GitHub ↗
(
    el: Displayable,
    animatableModel?: Model<AnimationOptionMixin>,
    dataIndex?: number,
    done?: AnimateOrSetPropsOption['cb']
)

Source from the content-addressed store, hash-verified

286}
287
288function fadeOutDisplayable(
289 el: Displayable,
290 animatableModel?: Model<AnimationOptionMixin>,
291 dataIndex?: number,
292 done?: AnimateOrSetPropsOption['cb']
293) {
294 el.removeTextContent();
295 el.removeTextGuideLine();
296 removeElement(el, {
297 style: {
298 opacity: 0
299 }
300 }, animatableModel, dataIndex, done);
301}
302
303export function removeElementWithFadeOut(
304 el: Element,

Callers 1

removeElementWithFadeOutFunction · 0.85

Calls 1

removeElementFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…