(option: GraphSeriesOption)
| 253 | hasSymbolVisual = true; |
| 254 | |
| 255 | init(option: GraphSeriesOption) { |
| 256 | super.init.apply(this, arguments as any); |
| 257 | |
| 258 | const self = this; |
| 259 | function getCategoriesData() { |
| 260 | return self._categoriesData; |
| 261 | } |
| 262 | // Provide data for legend select |
| 263 | this.legendVisualProvider = new LegendVisualProvider( |
| 264 | getCategoriesData, getCategoriesData |
| 265 | ); |
| 266 | |
| 267 | this.fillDataTextStyle(option.edges || option.links); |
| 268 | |
| 269 | this._updateCategoriesData(); |
| 270 | } |
| 271 | |
| 272 | mergeOption(option: GraphSeriesOption) { |
| 273 | super.mergeOption.apply(this, arguments as any); |
nothing calls this directly
no test coverage detected