Chartjs-After rendering one chart when trying to render a new one chart.js gives "Check that a complete date adapter is provided."

1👍

Fixed the issue by moving:

const renderer = new ChartJSNodeCanvas({
width: 800,
height: 300,
backgroundColour: "white"
});

Outside of the function.

Leave a comment