(ticks)
| 452 | } |
| 453 | |
| 454 | generateTickLabels(ticks) { |
| 455 | LinearScaleBase.prototype.generateTickLabels.call(this, ticks); |
| 456 | |
| 457 | // Point labels |
| 458 | this._pointLabels = this.getLabels() |
| 459 | .map((value, index) => { |
| 460 | const label = callCallback(this.options.pointLabels.callback, [value, index], this); |
| 461 | return label || label === 0 ? label : ''; |
| 462 | }) |
| 463 | .filter((v, i) => this.chart.getDataVisibility(i)); |
| 464 | } |
| 465 | |
| 466 | fit() { |
| 467 | const opts = this.options; |
nothing calls this directly
no test coverage detected