* NOTICE: `_approximateExtent` does not support filter. Callers must ensure the input extent * to be handled by `scale.sanitizeExtent`. * * Calculate extent on a filtered data might be time consuming. * Approximate extent is only used for: calculate extent of filtered data outsid
(extent: [number, number], dim: SeriesDimensionLoose)
| 693 | * Approximate extent is only used for: calculate extent of filtered data outside. |
| 694 | */ |
| 695 | setApproximateExtent(extent: [number, number], dim: SeriesDimensionLoose): void { |
| 696 | dim = this.getDimension(dim); |
| 697 | this._approximateExtent[dim] = extent.slice() as [number, number]; |
| 698 | } |
| 699 | |
| 700 | getCalculationInfo<CALC_INFO_KEY extends keyof DataCalculationInfo<HostModel>>( |
| 701 | key: CALC_INFO_KEY |
no test coverage detected