A voir également:
- Colorer les points d'un graph
- Créer une carte avec des points - Guide
- Excel colorer une cellule si - Guide
- Points de suite word - Guide
- Points gps - Guide
- Faites afficher avec un fond coloré les cellules qui contiennent une valeur comprise entre 250 et 350. quel nombre est dessiné en surbrillance ? - Forum VB / VBA
1 réponse
voici le code complet
Charts.Add ActiveChart.ChartType = xlXYScatter ActiveChart.SetSourceData Source:=Sheets("Feuil1").Range("AB2:AB139"), _ PlotBy:=xlColumns 'ActiveChart.SeriesCollection.NewSeries ActiveChart.SeriesCollection(1).Values = "=Feuil1!R2C28:R139C28" ActiveChart.Location Where:=xlLocationAsObject, Name:="Feuil1" With ActiveChart .HasAxis(xlCategory, xlPrimary) = False .HasAxis(xlValue, xlPrimary) = True End With ActiveChart.Axes(xlCategory, xlPrimary).CategoryType = xlAutomatic ActiveChart.HasLegend = False ActiveChart.ApplyDataLabels Type:=xlDataLabelsShowNone, LegendKey:=False For l = 1 To J ActiveChart.SeriesCollection(1).Points(l).MarkerBackgroundColorIndex = _ ActiveSheet.Cells(l + 1, "J").Interior.ColorIndex Next l