33 lines
1.4 KiB
Plaintext
33 lines
1.4 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-2">
|
|
<PieChart Id="PieControlli" AspRatio="1" LegendPos="bottom" Data="@DatiPareto" Labels="@LabelPareto" lineColor="@lineColors" backColor="@bgColors" Title="Esito Controlli"></PieChart>
|
|
</div>
|
|
<div class="col-10">
|
|
<Line Id="NumControlli" AspRatio="6" DataTS="@DatiPlot" Labels="@LabelPlot" lineColor="@lineColor" backColor="@lineColor" lTens="0" Title="Num Controlli"></Line>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|
|
</div> |