* @protected
()
| 406 | * @protected |
| 407 | */ |
| 408 | resetExtent() { |
| 409 | const thisOption = this.option; |
| 410 | |
| 411 | // Can not calculate data extent by data here. |
| 412 | // Because series and data may be modified in processing stage. |
| 413 | // So we do not support the feature "auto min/max". |
| 414 | |
| 415 | const extent = asc([thisOption.min, thisOption.max] as [number, number]); |
| 416 | |
| 417 | this._dataExtent = extent; |
| 418 | } |
| 419 | |
| 420 | /** |
| 421 | * PENDING: |
no test coverage detected