This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@page "/" | |
@inject IJSRuntime JsRuntime; | |
<h1>Call JavaScript Function Example</h1> | |
<button type="button" class="btn btn-primary" onclick="@DrawRect"> | |
DrawRect | |
</button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@page "/" | |
@inject IJSRuntime JsRuntime; | |
<h1>line chart</h1> | |
<div id="mypixi"></div> | |
@functions { | |
bool first = true; |