()
| 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(); |
no test coverage detected