Problème d'affichage des courbes dans un MsChart

Problème d'affichage des courbes dans un MsChart - VB/VBA/VBS - Programmation

Marsh Posté le 28-04-2005 à 19:35:01    

je cherche à afficher 7 courbes dans un MsChart
 
Il m'affiche qu'une seule courbe (la 17) et ensuite il m'affiche des exemples(ceux qui sont par défaut affichés)
 
voici mon code :
Dim vit As Integer
Dim nbgraph As Integer = 1
For vit = 5 To 17 Step 2
     With graph
           'Pas de rafraichissement...
           .Repaint = False
           .ColumnCount = 7 'nb graphes
           .RowCount = compteur ' Nb points
           ' Tracé du 1er graphe
           .Column = nbgraph ' numero du graphique
           .ColumnLabel = vit & "Km/h" ' Libellé du 1er graphe
           'on rentre les valeurs du graphe point par point
           Dim row As Integer
           For row = 1 To compteur
               .Row = row 'X
               .Data = (debit(row) * masse_volumique) / (vit * largeurepandage) * 0.0006 'Y
           Next row
     End With
     i += 1
Next
graph.Repaint = True

Reply

Marsh Posté le 28-04-2005 à 19:35:01   

Reply

Marsh Posté le 28-04-2005 à 19:49:58    

problème résolu!!!!
je i += 1 est en fait nbgraph += 1
ma variable s'appellait i au début mais j'avais un conflit avec un autre i... je l'ai changé mais pas partout...
 
Bref voila comment perdre une matinée...

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed