You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Admin/Sources/HeartTrack/Pages/Index.razor

16 lines
483 B

@page "/"
@using System.Globalization
<PageTitle>Global View</PageTitle>
<h1>Global View</h1>
This is the global statistics of our website.
<div style="align-content:flex-start">
<div style=" display:block; margin:50px;">
<p>Number of views of the website</p>
<MudChart ChartType="ChartType.Line" ChartSeries="@Series" @bind-SelectedIndex="IndexChart" XAxisLabels="@XAxisLabels" Width="100%" Height="350px" ChartOptions="@Options" />
</div>
</div>