(v: number, lo: number, hi: number)
| 169 | const hasSliderDataZoom = (options: ChartGPUOptions): boolean => options.dataZoom?.some((z) => z?.type === 'slider') ?? false; |
| 170 | |
| 171 | const clamp = (v: number, lo: number, hi: number): number => Math.min(hi, Math.max(lo, v)); |
| 172 | |
| 173 | type InteractionScalesCache = { |
| 174 | rectWidthCss: number; |
no outgoing calls
no test coverage detected