MCPcopy Index your code
hub / github.com/apache/echarts / isEmptyValue

Function isEmptyValue

src/chart/parallel/ParallelView.ts:250–254  ·  view source on GitHub ↗
(val: ParsedValue, axisType: OptionAxisType)

Source from the content-addressed store, hash-verified

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

Callers 1

createLinePointsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…