* @return {string[]}
()
| 356 | * @return {string[]} |
| 357 | */ |
| 358 | getLabels() { |
| 359 | const data = this.chart.data; |
| 360 | return this.options.labels || (this.isHorizontal() ? data.xLabels : data.yLabels) || data.labels || []; |
| 361 | } |
| 362 | |
| 363 | /** |
| 364 | * @return {import('../types.js').LabelItem[]} |
nothing calls this directly
no test coverage detected