* @override
(newOption: ContinuousVisualMapOption, isInit: boolean)
| 112 | * @override |
| 113 | */ |
| 114 | optionUpdated(newOption: ContinuousVisualMapOption, isInit: boolean) { |
| 115 | super.optionUpdated.apply(this, arguments as any); |
| 116 | |
| 117 | this.resetExtent(); |
| 118 | |
| 119 | this.resetVisual(function (mappingOption?: VisualMappingOption) { |
| 120 | mappingOption.mappingMethod = 'linear'; |
| 121 | mappingOption.dataExtent = this.getExtent(); |
| 122 | }); |
| 123 | |
| 124 | this._resetRange(); |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * @protected |
nothing calls this directly
no test coverage detected