MCPcopy
hub / github.com/apache/echarts / parseAxisModelMinMax

Function parseAxisModelMinMax

src/coord/scaleRawExtentInfo.ts:439–443  ·  view source on GitHub ↗
(scale: Scale, minMax: ScaleDataValue)

Source from the content-addressed store, hash-verified

437}
438
439function parseAxisModelMinMax(scale: Scale, minMax: ScaleDataValue): number {
440 return minMax == null ? null // null/undefined means not specified and other default values can be applied.
441 : eqNaN(minMax) ? NaN // NaN means a deliberate invalid number.
442 : scale.parse(minMax);
443}
444
445function parseBoundaryGapOption(
446 scale: Scale,

Callers 1

constructorMethod · 0.85

Calls 1

parseMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…