* NOTICE: This is different from `.getOrdinalMeta().length` when extent * is specified by `xxxAxis.min/max` or by `dataZoom`.
()
| 323 | * is specified by `xxxAxis.min/max` or by `dataZoom`. |
| 324 | */ |
| 325 | count(): number { |
| 326 | const extent = getScaleExtentForTickUnsafe(this._mapper); |
| 327 | return extent[1] - extent[0] + 1; |
| 328 | } |
| 329 | |
| 330 | getOrdinalMeta(): OrdinalMeta { |
| 331 | return this._ordinalMeta; |
nothing calls this directly
no test coverage detected