(parent, tooltip, tooltipItems)
| 346 | } |
| 347 | |
| 348 | function createTooltipContext(parent, tooltip, tooltipItems) { |
| 349 | return createContext(parent, { |
| 350 | tooltip, |
| 351 | tooltipItems, |
| 352 | type: 'tooltip' |
| 353 | }); |
| 354 | } |
| 355 | |
| 356 | function overrideCallbacks(callbacks, context) { |
| 357 | const override = context && context.dataset && context.dataset.tooltip && context.dataset.tooltip.callbacks; |
no test coverage detected