(domain, scope, fields)
| 133710 | } |
| 133711 | |
| 133712 | function numericMultipleDomain(domain, scope, fields) { |
| 133713 | // get extents for each domain field |
| 133714 | var extents = fields.map(function (f) { |
| 133715 | var data = scope.getData(f.data); |
| 133716 | if (!data) dataLookupError(f.data); |
| 133717 | return data.extentRef(scope, f.field); |
| 133718 | }); // combine extents |
| 133719 | |
| 133720 | return (0, _util.ref)(scope.add((0, _transforms.MultiExtent)({ |
| 133721 | extents: extents |
| 133722 | }))); |
| 133723 | } // -- SCALE BINS ----- |
| 133724 | |
| 133725 | |
| 133726 | function parseScaleBins(v, scope) { |
nothing calls this directly
no test coverage detected