22 lines
413 B
Plaintext
22 lines
413 B
Plaintext
@using MP.MONO.UI.Components
|
|
@using MP.MONO.Core.DTO
|
|
@using MP.MONO.UI.Data
|
|
|
|
@inject CurrentDataService MMDataService
|
|
|
|
<div class="p-1 py-md-2">
|
|
@if (ListRecords == null || ListRecords.Count == 0)
|
|
{
|
|
<LoadingDataSmall></LoadingDataSmall>
|
|
}
|
|
else
|
|
{
|
|
<MP.MONO.UI.Components.Chart.Line AspRatio="2" DataTS="@LevelVal"></MP.MONO.UI.Components.Chart.Line>
|
|
}
|
|
</div>
|
|
|
|
|
|
@code {
|
|
|
|
}
|