(domain, scope, fields)
| 147428 | }))); |
| 147429 | } |
| 147430 | function numericMultipleDomain(domain, scope, fields) { |
| 147431 | // get extents for each domain field |
| 147432 | const extents = fields.map((f)=>{ |
| 147433 | const data = scope.getData(f.data); |
| 147434 | if (!data) dataLookupError(f.data); |
| 147435 | return data.extentRef(scope, f.field); |
| 147436 | }); // combine extents |
| 147437 | return ref(scope.add(MultiExtent({ |
| 147438 | extents: extents |
| 147439 | }))); |
| 147440 | } // -- SCALE BINS ----- |
| 147441 | function parseScaleBins(v, scope) { |
| 147442 | return v.signal || (0, _vegaUtil.isArray)(v) ? parseArray(v, scope) : scope.objectProperty(v); |
| 147443 | } // -- SCALE NICE ----- |
nothing calls this directly
no test coverage detected