Files
mapo-mono/MP.MONO.UI/Components/ParamPlot.razor
T

23 lines
666 B
Plaintext

@using MP.MONO.UI.Components
@using MP.MONO.Core.DTO
@using MP.MONO.UI.Data
@inject CurrentDataService MMDataService
<div class="row">
<div class="col-12">
<b>@SelectedParam</b> - <i>@(LevelVal.Count) rec</i>
</div>
<div class="col-12">
@if (LevelVal == null || LevelVal.Count == 0)
{
<LoadingDataSmall></LoadingDataSmall>
}
else
{
<MP.MONO.UI.Components.Chart.Line AspRatio="2" DataTS="@LevelVal" lineColor="@getLineColors("0.75")" backColor="@getFillColors("0.25")" pointColor="@getPointColors("1")" lTens="0"></MP.MONO.UI.Components.Chart.Line>
}
</div>
</div>