(tooltipItem)
| 402 | return label; |
| 403 | }, |
| 404 | labelColor(tooltipItem) { |
| 405 | const meta = tooltipItem.chart.getDatasetMeta(tooltipItem.datasetIndex); |
| 406 | const options = meta.controller.getStyle(tooltipItem.dataIndex); |
| 407 | return { |
| 408 | borderColor: options.borderColor, |
| 409 | backgroundColor: options.backgroundColor, |
| 410 | borderWidth: options.borderWidth, |
| 411 | borderDash: options.borderDash, |
| 412 | borderDashOffset: options.borderDashOffset, |
| 413 | borderRadius: 0, |
| 414 | }; |
| 415 | }, |
| 416 | labelTextColor() { |
| 417 | return this.options.bodyColor; |
| 418 | }, |
nothing calls this directly
no test coverage detected
searching dependent graphs…