(
tick: ScaleTick,
idx: number,
labelFormatter: TimeAxisLabelFormatterParsed
)
| 163 | } |
| 164 | |
| 165 | getFormattedLabel( |
| 166 | tick: ScaleTick, |
| 167 | idx: number, |
| 168 | labelFormatter: TimeAxisLabelFormatterParsed |
| 169 | ): string { |
| 170 | return leveledFormat(tick, idx, labelFormatter, this._locale, this._useUTC); |
| 171 | } |
| 172 | |
| 173 | getTicks(opt?: ScaleGetTicksOpt): TimeScaleTick[] { |
| 174 | opt = opt || {}; |
nothing calls this directly
no test coverage detected