(axisModel: AxisBaseModel)
| 402 | } |
| 403 | |
| 404 | export function getAxisPointerModel(axisModel: AxisBaseModel) { |
| 405 | const axisInfo = getAxisInfo(axisModel); |
| 406 | return axisInfo && axisInfo.axisPointerModel; |
| 407 | } |
| 408 | |
| 409 | function isHandleTrigger(axisPointerModel: Model<CommonAxisPointerOption>) { |
| 410 | return !!axisPointerModel.get(['handle', 'show']); |
nothing calls this directly
no test coverage detected
searching dependent graphs…