(chart, args, options)
| 81 | }, |
| 82 | |
| 83 | beforeDatasetDraw(chart, args, options) { |
| 84 | const source = args.meta.$filler; |
| 85 | |
| 86 | if (!_shouldApplyFill(source) || options.drawTime !== 'beforeDatasetDraw') { |
| 87 | return; |
| 88 | } |
| 89 | |
| 90 | _drawfill(chart.ctx, source, chart.chartArea); |
| 91 | }, |
| 92 | |
| 93 | defaults: { |
| 94 | propagate: true, |
nothing calls this directly
no test coverage detected