(encode, dim)
| 29837 | } |
| 29838 | |
| 29839 | function getOrCreateEncodeArr(encode, dim) { |
| 29840 | if (!encode.hasOwnProperty(dim)) { |
| 29841 | encode[dim] = []; |
| 29842 | } |
| 29843 | return encode[dim]; |
| 29844 | } |
| 29845 | |
| 29846 | function getDimensionTypeByAxis(axisType) { |
| 29847 | return axisType === 'category' |
no outgoing calls
no test coverage detected