* This action will be throttled.
(api: ExtensionAPI, batch: DataZoomPayloadBatchItem[])
| 156 | * This action will be throttled. |
| 157 | */ |
| 158 | function dispatchAction(api: ExtensionAPI, batch: DataZoomPayloadBatchItem[]) { |
| 159 | if (!api.isDisposed()) { |
| 160 | api.dispatchAction({ |
| 161 | type: 'dataZoom', |
| 162 | animation: { |
| 163 | easing: 'cubicOut', |
| 164 | duration: 100 |
| 165 | }, |
| 166 | batch: batch |
| 167 | }); |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | function containsPoint( |
| 172 | coordSysModel: CoordinateSystemHostModel, e: ZRElementEvent, x: number, y: number |
no test coverage detected
searching dependent graphs…