(dimType)
| 29852 | } |
| 29853 | |
| 29854 | function mayLabelDimType(dimType) { |
| 29855 | // In most cases, ordinal and time do not suitable for label. |
| 29856 | // Ordinal info can be displayed on axis. Time is too long. |
| 29857 | return !(dimType === 'ordinal' || dimType === 'time'); |
| 29858 | } |
| 29859 | |
| 29860 | // function findTheLastDimMayLabel(data) { |
| 29861 | // // Get last value dim |
no outgoing calls
no test coverage detected