* @return {import('../types.js').LabelItem[]}
(chartArea = this.chart.chartArea)
| 364 | * @return {import('../types.js').LabelItem[]} |
| 365 | */ |
| 366 | getLabelItems(chartArea = this.chart.chartArea) { |
| 367 | const items = this._labelItems || (this._labelItems = this._computeLabelItems(chartArea)); |
| 368 | return items; |
| 369 | } |
| 370 | |
| 371 | // When a new layout is created, reset the data limits cache |
| 372 | beforeLayout() { |
no test coverage detected