* NOTICE: OrdinalScale extent should always originates from * `[0, ordinalMeta.categories.length - 1]`, regardless of min/max of `series.data`. * But settings like `xxxAxis.min/max` can still modify the extent. * It is handled by constructor of `ScaleRawExtentInfo`.
(start, end)
| 217 | * It is handled by constructor of `ScaleRawExtentInfo`. |
| 218 | */ |
| 219 | setExtent(start, end) { |
| 220 | return this._mapper.setExtent(start, end); |
| 221 | }, |
| 222 | |
| 223 | setExtent2(kind, start, end) { |
| 224 | return this._mapper.setExtent2(kind, start, end); |