darren-uk / weight-converter-app

Converts lbs to stones & pounds and displays weight and date in an ordered list and saves in local storage of users web browser
Other
0 stars 0 forks source link

Update chart when entries changed #3

Closed darren-uk closed 1 year ago

darren-uk commented 1 year ago

Error when calling displayGraph(). = Canvas is already in use.

Canvas needs to be cleared before redrawing

possible solution at https://stackoverflow.com/questions/40056555/destroy-chart-js-bar-graph-to-redraw-other-graph-in-same-canvas

using .destroy() or const context = canvas.getContext('2d'); context.clearRect(0, 0, canvas.width, canvas.height);

darren-uk commented 1 year ago

Fixed issue by deleting canvas element from HTML and using function to re create element before populating