* Update symbols draw by new data
(data: LargeLinesData)
| 236 | * Update symbols draw by new data |
| 237 | */ |
| 238 | updateData(data: LargeLinesData) { |
| 239 | this._clear(); |
| 240 | |
| 241 | const lineEl = this._create(); |
| 242 | lineEl.setShape({ |
| 243 | segs: data.getLayout('linesPoints') |
| 244 | }); |
| 245 | |
| 246 | this._setCommon(lineEl, data); |
| 247 | }; |
| 248 | |
| 249 | incrementalPrepareUpdate(data: LargeLinesData) { |
| 250 | this.group.removeAll(); |
nothing calls this directly
no test coverage detected