(scale, count, type, specifier, formatType, noSkip)
| 110438 | } |
| 110439 | |
| 110440 | function labelFormat(scale, count, type, specifier, formatType, noSkip) { |
| 110441 | const format = formats[scale.type] && formatType !== _vegaScale.Time && formatType !== _vegaScale.UTC ? thresholdFormat(scale, specifier) : (0, _ticks.tickFormat)(scale, count, specifier, formatType, noSkip); |
| 110442 | return type === _legendTypes.Symbols && isDiscreteRange(scale) ? formatRange(format) : type === _legendTypes.Discrete ? formatDiscrete(format) : formatPoint(format); |
| 110443 | } |
| 110444 | |
| 110445 | function formatRange(format) { |
| 110446 | return function (value, index, array) { |
nothing calls this directly
no test coverage detected