(
axisLike: {
scale: Scale,
model: AxisBaseModel,
},
)
| 223 | * @see SCALE_EXTENT_CONSTRUCTION for the full processing flow. |
| 224 | */ |
| 225 | export function scaleCalcNice( |
| 226 | axisLike: { |
| 227 | scale: Scale, |
| 228 | model: AxisBaseModel, |
| 229 | }, |
| 230 | ): void { |
| 231 | const scale = axisLike.scale; |
| 232 | const model = axisLike.model as AxisBaseModel<NumericAxisBaseOptionCommon>; |
| 233 | |
| 234 | const axis = model.axis; |
| 235 | const ecModel = model.ecModel; |
| 236 | if (__DEV__) { |
| 237 | assert(axis && ecModel); |
| 238 | } |
| 239 | |
| 240 | scaleCalcNice2(scale, model, axis, ecModel, null); |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * @see SCALE_EXTENT_CONSTRUCTION for the full processing flow. |
no test coverage detected
searching dependent graphs…