(container: HTMLElement)
| 25 | ); |
| 26 | |
| 27 | const getXAxisTickXs = (container: HTMLElement): number[] => |
| 28 | Array.from(container.querySelectorAll('.axes .x .ticks text'), (text) => |
| 29 | Number(text.getAttribute('x')), |
| 30 | ); |
| 31 | |
| 32 | const getYAxisTickLabels = (container: HTMLElement): (string | null)[] => |
| 33 | Array.from( |
no outgoing calls
no test coverage detected
searching dependent graphs…