(ecModel, api)
| 55 | // and series data processed. So put it on statistic processing stage. |
| 56 | registers.registerProcessor(registers.PRIORITY.PROCESSOR.STATISTIC, { |
| 57 | overallReset(ecModel, api) { |
| 58 | // Build axisPointerModel, mergin tooltip.axisPointer model for each axis. |
| 59 | // allAxesInfo should be updated when setOption performed. |
| 60 | (ecModel.getComponent('axisPointer') as AxisPointerModel).coordSysAxesInfo = |
| 61 | collect(ecModel, api); |
| 62 | } |
| 63 | }); |
| 64 | |
| 65 | // Broadcast to all views. |
nothing calls this directly
no test coverage detected
searching dependent graphs…