(axisType)
| 29844 | } |
| 29845 | |
| 29846 | function getDimensionTypeByAxis(axisType) { |
| 29847 | return axisType === 'category' |
| 29848 | ? 'ordinal' |
| 29849 | : axisType === 'time' |
| 29850 | ? 'time' |
| 29851 | : 'float'; |
| 29852 | } |
| 29853 | |
| 29854 | function mayLabelDimType(dimType) { |
| 29855 | // In most cases, ordinal and time do not suitable for label. |
no outgoing calls
no test coverage detected