1 2 3 4 5 6 7 8
|
Dim yValues As Double() = {v(1), v(2) * 2, v(3) * 7, v(5), v(4), v(6)}
Dim xValues As String() = {"Consommation faible " & String.Format("{0:0.##} " & "%", v(1)), _
"Consommation moyenne " & String.Format("{0:0.##}" & "%", v(2) * 3), _
"Consommation totale " & String.Format("{0:0.##}" & "%", v(3) * 7), _
"Postes de contrôle neutralisés " & String.Format("{0:0.##}" & "%", v(5)), _
"autres postes " & String.Format("{0:0.##}" & "%", v(4)), _
"Inaccessible à la vérification " & String.Format("{0:0.##}" & "%", v(6))} |
Partager