(domain, scope, fields)
| 147417 | return sort; |
| 147418 | } |
| 147419 | function quantileMultipleDomain(domain, scope, fields) { |
| 147420 | // get value arrays for each domain field |
| 147421 | const values = fields.map((f)=>{ |
| 147422 | const data = scope.getData(f.data); |
| 147423 | if (!data) dataLookupError(f.data); |
| 147424 | return data.domainRef(scope, f.field); |
| 147425 | }); // combine value arrays |
| 147426 | return ref(scope.add(MultiValues({ |
| 147427 | values: values |
| 147428 | }))); |
| 147429 | } |
| 147430 | function numericMultipleDomain(domain, scope, fields) { |
| 147431 | // get extents for each domain field |
| 147432 | const extents = fields.map((f)=>{ |
nothing calls this directly
no test coverage detected