Bonjour,
je souhaite changer les couleurs d'un graphique excel.
Voila mon code :
Dim oExcel, oWrk, oSheet, oChart, oSerie
Dim rowStart, plotOrder, cycleStart
Set oExcel = Server.CreateObject("Excel.Application")
Set oWrk = oExcel.Workbooks.Open(Fichier)
oChart.Chart.ChartGroups(1).SeriesCollection(7).Interior.Color = RGB(89,98,126)
Set oChart = Nothing
Set oSerie = Nothing
oWrk.Save
oWrk.Close
oExcel.Quit
Set oExcel = Nothing
Le problème c'est que ca ne veut bien changer qu'une ligne sur les 7 du graphique. C'est la 5eme qui veut bien changer de couleur.Mais si je teste pour d'autre serie, aucun changement

Pourriez-vous m'aider s'il vous plait??
Merci beaucoup!!
Roro