* Merges user-supplied and default dataset-level options * @private
()
| 436 | * @private |
| 437 | */ |
| 438 | configure() { |
| 439 | const config = this.chart.config; |
| 440 | const scopeKeys = config.datasetScopeKeys(this._type); |
| 441 | const scopes = config.getOptionScopes(this.getDataset(), scopeKeys, true); |
| 442 | this.options = config.createResolver(scopes, this.getContext()); |
| 443 | this._parsing = this.options.parsing; |
| 444 | this._cachedDataOpts = {}; |
| 445 | } |
| 446 | |
| 447 | /** |
| 448 | * @param {number} start |
no test coverage detected