33 lines
1.3 KiB
Plaintext
33 lines
1.3 KiB
Plaintext
|
|
<div class="row">
|
|
@if (RawData == null || RawData.Count == 0)
|
|
{
|
|
<div class="col-12">
|
|
<div class="alert alert-secondary text-center h4"><span class="oi oi-graph"></span> No Chart Data</div>
|
|
</div>
|
|
}
|
|
else
|
|
{
|
|
<div class="col-2" style="max-height: 10em; overflow:hidden; overflow-y: auto;">
|
|
<ul class="list-group list-group-sm small">
|
|
@foreach (var item in @ParetoData)
|
|
{
|
|
<li class="list-group-item p-1 d-flex justify-content-between align-items-center">
|
|
@item.label
|
|
<span class="badge badge-primary badge-pill">@item.value</span>
|
|
</li>
|
|
}
|
|
</ul>
|
|
</div>
|
|
<div class="col-10">
|
|
<div class="row">
|
|
<div class="col-6">
|
|
<BarPlot Id="ParetoScarti" AspRatio="3" Data="@DatiPareto" Labels="@LabelPareto" Legenda="Pareto Scarti Macchine" lineColor="@lineColors" backColor="@bgColors"></BarPlot>
|
|
</div>
|
|
<div class="col-6">
|
|
<Line Id="NumScarti" AspRatio="3" DataTS="@DatiPlot" Labels="@LabelPlot" lineColor="@lineColor" backColor="@lineColor" lTens="0" Title="Num Scarti"></Line>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|
|
</div> |