Hey zusammen,
Ich möchte bitte die Farbe Linien eines Diagrammes ändern.
So Sieht das Diagramm bei mir aus:
http://www.imagenetz.de/fde0328c7/temp.gif.html
und So will das Diagramm aussehen
http://www.imagenetz.de/fdcfcc0b1/Unbenannt.png.html
Hier ist den VBA-Code :
.ChartType = xlXYScatterLines
.SeriesCollection.NewSeries
With .SeriesCollection(1)
.XValues = Range("AA24:AA32,AB24:AB33,AC24:AC32,AD24:AD32,AE24:AE32,AF24:AF32,AG24:AG32,AH24:AH32,AI24:AI32,AJ24:AJ32")
.Values = Range("T36:T" & Lastrow)
.MarkerSize = 7
'.Format.Line.ForeColor.RGB = RGB(0, 32, 96)
.Format.Fill.ForeColor.RGB = RGB(255, 0, 0)
End With
Danke für Ihre Hilfe
|