(val: ParsedValue, axisType: OptionAxisType)
| 248 | |
| 249 | // FIXME put in common util? |
| 250 | function isEmptyValue(val: ParsedValue, axisType: OptionAxisType) { |
| 251 | return axisType === 'category' |
| 252 | ? val == null |
| 253 | : (val == null || isNaN(val as number)); // axisType === 'value' |
| 254 | } |
| 255 | |
| 256 | export default ParallelView; |
no outgoing calls
no test coverage detected
searching dependent graphs…