(ends: number[][], endCenter: number[])
| 181 | } |
| 182 | |
| 183 | function layEndLine(ends: number[][], endCenter: number[]) { |
| 184 | const from = endCenter.slice(); |
| 185 | const to = endCenter.slice(); |
| 186 | from[cDimIdx] -= halfWidth; |
| 187 | to[cDimIdx] += halfWidth; |
| 188 | ends.push(from, to); |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | export function registerBoxplotAxisHandlers(registers: EChartsExtensionInstallRegisters) { |
no outgoing calls
no test coverage detected
searching dependent graphs…