()
| 2749 | createExtensionAPI = function (ecIns: ECharts): ExtensionAPI { |
| 2750 | return new (class extends ExtensionAPI { |
| 2751 | getCoordinateSystems(): CoordinateSystemMaster[] { |
| 2752 | return ecIns._coordSysMgr.getCoordinateSystems(); |
| 2753 | } |
| 2754 | getComponentByElement(el: Element) { |
| 2755 | while (el) { |
| 2756 | const modelInfo = (el as ViewRootGroup).__ecComponentInfo; |
no outgoing calls
no test coverage detected