()
| 136 | |
| 137 | |
| 138 | constructor() { |
| 139 | this.group = new Group(); |
| 140 | this.uid = componentUtil.getUID('viewChart'); |
| 141 | |
| 142 | this.renderTask = createTask<SeriesTaskContext>({ |
| 143 | plan: renderTaskPlan, |
| 144 | reset: renderTaskReset |
| 145 | }); |
| 146 | this.renderTask.context = {view: this} as SeriesTaskContext; |
| 147 | } |
| 148 | |
| 149 | init(ecModel: GlobalModel, api: ExtensionAPI): void {} |
| 150 |
nothing calls this directly
no test coverage detected