(el, visualRectGroup)
| 1749 | } |
| 1750 | |
| 1751 | function createVisualRectForEl(el, visualRectGroup) { |
| 1752 | createRectForDisplayable(el, visualRectGroup); |
| 1753 | var textContent = el.getTextContent(); |
| 1754 | var textGuildLine = el.getTextGuideLine(); |
| 1755 | var textConfig = el.textConfig; |
| 1756 | if (textContent || textGuildLine) { |
| 1757 | var isLocal = textConfig && textConfig.local; |
| 1758 | var targetVisualGroup = isLocal ? visualRectGroup : _bRectGroup; |
| 1759 | textContent && createRectForDisplayable(textContent, targetVisualGroup, true); |
| 1760 | textGuildLine && createRectForDisplayable(textGuildLine, targetVisualGroup, true); |
| 1761 | } |
| 1762 | } |
| 1763 | |
| 1764 | function createVisualRectGroup(fromEl, visualRectGroupParent) { |
| 1765 | var visualRectGroup = new echarts.graphic.Group(); |
no test coverage detected
searching dependent graphs…