()
| 278 | } |
| 279 | |
| 280 | initialize() { |
| 281 | const meta = this._cachedMeta; |
| 282 | this.configure(); |
| 283 | this.linkScales(); |
| 284 | meta._stacked = isStacked(meta.vScale, meta); |
| 285 | this.addElements(); |
| 286 | |
| 287 | if (this.options.fill && !this.chart.isPluginEnabled('filler')) { |
| 288 | console.warn("Tried to use the 'fill' option without the 'Filler' plugin enabled. Please import and register the 'Filler' plugin and make sure it is not disabled in the options"); |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | updateIndex(datasetIndex) { |
| 293 | if (this.index !== datasetIndex) { |
no test coverage detected