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

Method _hideIndicator

src/component/visualMap/ContinuousView.ts:865–878  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

863 }
864
865 private _hideIndicator() {
866 const shapes = this._shapes;
867 shapes.indicator && shapes.indicator.attr('invisible', true);
868 shapes.indicatorLabel && shapes.indicatorLabel.attr('invisible', true);
869
870 const handleLabels = this._shapes.handleLabels;
871 if (handleLabels) {
872 for (let i = 0; i < handleLabels.length; i++) {
873 // Fade out handle labels.
874 // NOTE: Must use api enter/leave on emphasis/blur/select state. Or the global states manager will change it.
875 this.api.leaveBlur(handleLabels[i]);
876 }
877 }
878 }
879
880 private _clearHoverLinkToSeries() {
881 this._hideIndicator();

Callers 3

_dragHandleMethod · 0.95

Calls 1

leaveBlurMethod · 0.80

Tested by

no test coverage detected