(axis, value)
| 37886 | } |
| 37887 | |
| 37888 | function getAxisRawValue(axis, value) { |
| 37889 | // In category axis with data zoom, tick is not the original |
| 37890 | // index of axis.data. So tick should not be exposed to user |
| 37891 | // in category axis. |
| 37892 | return axis.type === 'category' ? axis.scale.getLabel(value) : value; |
| 37893 | } |
| 37894 | |
| 37895 | /** |
| 37896 | * @param {module:echarts/coord/Axis} axis |
no outgoing calls
no test coverage detected