(index)
| 509 | } |
| 510 | |
| 511 | getPointLabelContext(index) { |
| 512 | const pointLabels = this._pointLabels || []; |
| 513 | |
| 514 | if (index >= 0 && index < pointLabels.length) { |
| 515 | const pointLabel = pointLabels[index]; |
| 516 | return createPointLabelContext(this.getContext(), index, pointLabel); |
| 517 | } |
| 518 | } |
| 519 | |
| 520 | getPointPosition(index, distanceFromCenter, additionalAngle = 0) { |
| 521 | const angle = this.getIndexAngle(index) - HALF_PI + additionalAngle; |
no test coverage detected