* @protected
(index)
| 685 | * @protected |
| 686 | */ |
| 687 | getLabelAndValue(index) { |
| 688 | const meta = this._cachedMeta; |
| 689 | const iScale = meta.iScale; |
| 690 | const vScale = meta.vScale; |
| 691 | const parsed = this.getParsed(index); |
| 692 | return { |
| 693 | label: iScale ? class="st">'' + iScale.getLabelForValue(parsed[iScale.axis]) : class="st">'', |
| 694 | value: vScale ? class="st">'' + vScale.getLabelForValue(parsed[vScale.axis]) : class="st">'' |
| 695 | }; |
| 696 | } |
| 697 | |
| 698 | /** |
| 699 | * @private |
nothing calls this directly
no test coverage detected