(splitNumber: number)
| 305 | } |
| 306 | |
| 307 | getMinorTicks(splitNumber: number): number[][] { |
| 308 | return getMinorTicks( |
| 309 | this, |
| 310 | splitNumber, |
| 311 | getBreaksUnsafe(this), |
| 312 | this._cfg.interval |
| 313 | ); |
| 314 | } |
| 315 | |
| 316 | getLabel( |
| 317 | tick: ScaleTick, |
nothing calls this directly
no test coverage detected