How can I call a custom JavaScript function, to manipulate the HTML5 canvas element, from within the "HTML" section of my Blazor server project?
I have a Blazor server application. On one of my pages I have the standard setup: MyPage.razor: @page "/mypage" <div> <!-- stuff here ... --> </div> @code { // stuff here ... } On this page, I am looping through…