Differenze

Queste sono le differenze tra la revisione selezionata e la versione attuale della pagina.

Link a questa pagina di confronto

Entrambe le parti precedenti la revisioneRevisione precedente
dashboard:metodo_2 [2025/06/29 22:40] – eliminata - modifica esterna (Data sconosciuta) 127.0.0.1dashboard:metodo_2 [2025/06/29 22:40] (versione attuale) – ↷ Pagina spostata da metodo_2 a dashboard:metodo_2 admin
Linea 1: Linea 1:
 +====== Control Chart Dashboard ======
  
 +===== 📊 Parametri di Controllo =====
 +
 +^ Parametro ^ Valore ^ Calcolo ^
 +| Media (CL) | 25.0 | μ |
 +| Limite Superiore (UCL) | 30.0 | μ + 3σ |
 +| Limite Inferiore (LCL) | 20.0 | μ - 3σ |
 +| Deviazione Standard | 1.67 | σ |
 +| Capability Index | 1.0 | Cp |
 +
 +===== 📈 Grafico di Controllo =====
 +
 +<achart>
 +{
 +  "chart": {
 +    "type": "line",
 +    "height": 400,
 +    "background": "#fafafa"
 +  },
 +  "title": {
 +    "text": "Monitoraggio Processo - Ultimo Periodo"
 +  },
 +  "series": [
 +    {
 +      "name": "💡 Valori",
 +      "data": [23.5, 24.1, 26.2, 31.2, 24.8, 24.3, 25.7, 23.9, 25.2, 24.6],
 +      "color": "#0066CC"
 +    },
 +    {
 +      "name": "🎯 Target (CL)",
 +      "data": [25, 25, 25, 25, 25, 25, 25, 25, 25, 25],
 +      "color": "#00AA00"
 +    },
 +    {
 +      "name": "🚨 Limiti",
 +      "data": [30, 30, 30, 30, 30, 30, 30, 30, 30, 30],
 +      "color": "#FF4444"
 +    },
 +    {
 +      "name": "🚨 Limiti",
 +      "data": [20, 20, 20, 20, 20, 20, 20, 20, 20, 20],
 +      "color": "#FF4444"
 +    }
 +  ],
 +  "xaxis": {
 +    "categories": ["Lun", "Mar", "Mer", "Gio", "Ven", "Lun", "Mar", "Mer", "Gio", "Ven"],
 +    "title": { "text": "Giorno della Settimana" }
 +  },
 +  "yaxis": {
 +    "title": { "text": "Valore Qualità" }
 +  },
 +  "stroke": {
 +    "width": [4, 2, 2, 2],
 +    "dashArray": [0, 5, 3, 3]
 +  },
 +  "markers": {
 +    "size": [8, 0, 0, 0]
 +  },
 +  "annotations": {
 +    "points": [
 +      {
 +        "x": 4,
 +        "y": 31.2,
 +        "marker": {
 +          "size": 10,
 +          "fillColor": "#FF0000"
 +        },
 +        "label": {
 +          "text": "FUORI CONTROLLO!",
 +          "style": {
 +            "color": "#fff",
 +            "background": "#FF0000"
 +          }
 +        }
 +      }
 +    ]
 +  }
 +}
 +</achart>
 +
 +===== 📋 Dati Dettagliati =====
 +
 +^ #   ^ Data        ^ Valore  ^ Status        ^
 +| 1   | 2025-06-23  | 23.5    | ✅ OK         |
 +| 2   | 2025-06-24  | 24.1    | ✅ OK         |
 +| 3   | 2025-06-25  | 26.2    | ✅ OK         |
 +| 4   | 2025-06-26  | 31.2    | ❌ **FUORI**  |
 +| 5   | 2025-06-27  | 24.8    | ✅ OK         |
 +| 6   | 2025-06-30  | 24.3    | ✅ OK         |
 +| 7   | 2025-07-01  | 25.7    | ✅ OK         |
 +| 8   | 2025-07-02  | 23.9    | ✅ OK         |
 +| 9   | 2025-07-03  | 25.2    | ✅ OK         |
 +| 10  | 2025-07-04  | 24.6    | ✅ OK         |
 +
 +===== 🎯 KPI e Azioni =====
 +
 +**Performance:**
 +  * **Punti in controllo:** 9/10 (90%)
 +  * **Capability:** Processo capace
 +  * **Trend:** Stabile
 +
 +**Azioni Immediate:**
 +  - [x] Alert inviato al supervisore
 +  - [ ] Calibrazione strumento #4
 +  - [ ] Training operatore Marco
 +  - [ ] Revisione procedura
 +
 +===== 📝 Note Processo =====
 +
 +<note tip>
 +**Buone Pratiche:**
 +  * Controllare calibrazione ogni lunedì
 +  * Rotazione operatori per evitare bias
 +  * Documentare sempre le anomalie
 +</note>
 +
 +<note warning>
 +**Attenzione:** Il campione #4 richiede investigazione immediata. Non procedere senza azioni correttive.
 +</note>