(
visualMapModel: ContinuousModel,
ecModel: GlobalModel,
api: ExtensionAPI,
payload: {type: string, from: string}
)
| 116 | } |
| 117 | |
| 118 | doRender( |
| 119 | visualMapModel: ContinuousModel, |
| 120 | ecModel: GlobalModel, |
| 121 | api: ExtensionAPI, |
| 122 | payload: {type: string, from: string} |
| 123 | ) { |
| 124 | if (!payload || payload.type !== 'selectDataRange' || payload.from !== this.uid) { |
| 125 | this._buildView(); |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | private _buildView() { |
| 130 | this.group.removeAll(); |
nothing calls this directly
no test coverage detected