From d160f7e4f2741717e82dca2d88d51360ce857cdf Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Thu, 9 Apr 2026 18:46:59 +0200 Subject: [PATCH] Update display Call Stats (da completare con grafici) --- MP.IOC/Components/Pages/CallStats.razor | 68 +++++++++++++++++-------- 1 file changed, 46 insertions(+), 22 deletions(-) diff --git a/MP.IOC/Components/Pages/CallStats.razor b/MP.IOC/Components/Pages/CallStats.razor index a85042e8..2fdaf05b 100644 --- a/MP.IOC/Components/Pages/CallStats.razor +++ b/MP.IOC/Components/Pages/CallStats.razor @@ -4,29 +4,53 @@

Current Call Stats

-
-
- @foreach (var item in ParetoDay) - { -
-
    -
  • - @item.Key +
    +
    +
    +
      +
    • + Avail Data +
    • + @foreach (var item in ParetoDay) + { +
    • + @item.Key + +
    • + } +
    +
    +
    + Pareto Chart +
    +
    + Pie chart +
    +
    +
    + @foreach (var item in ParetoDay) + { +
    +
      +
    • + @item.Key +
    • + @foreach (var itemDet in item.Value) + { +
    • +
      + @itemDet.Label +
      +
      + @($"{itemDet.Value:N0}") +
    • - @foreach (var itemDet in item.Value) - { -
    • -
      - @itemDet.Label -
      -
      - @($"{itemDet.Value:N0}") -
      -
    • - } -
    -
    - } + } +
+
+ }