* @param {Function} callback param: axisModel, dimNames, axisIndex, dataZoomModel, ecModel
(
callback: (
this: Ctx,
axisDim: DataZoomAxisDimension,
axisIndex: number
) => void,
context?: Ctx
)
| 435 | * @param {Function} callback param: axisModel, dimNames, axisIndex, dataZoomModel, ecModel |
| 436 | */ |
| 437 | eachTargetAxis<Ctx>( |
| 438 | callback: ( |
| 439 | this: Ctx, |
| 440 | axisDim: DataZoomAxisDimension, |
| 441 | axisIndex: number |
| 442 | ) => void, |
| 443 | context?: Ctx |
| 444 | ): void { |
| 445 | this._targetAxisInfoMap.each(function (axisInfo, axisDim) { |
| 446 | each(axisInfo.indexList, function (axisIndex) { |
| 447 | callback.call(context, axisDim, axisIndex); |
| 448 | }); |
| 449 | }); |
| 450 | } |
| 451 | |
| 452 | /** |
| 453 | * @return If not found, return null/undefined. |
no test coverage detected