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}") -
      -
    • - } -
    -
    - } + } +
+
+ }