Point.MarkerBackgroundColorIndex (Word)
Retorna ou define a cor de plano de fundo do marcador como um índice na paleta de cores atual ou como uma das seguintes constantes XlColorIndex : xlColorIndexAutomatic ou xlColorIndexNone. Long de leitura/gravação. Os valores de retorno possíveis são xlColorIndexAutomatic - Cor automática, xlColorIndexNone - Sem cor.
A propriedade se aplica somente a gráficos de linhas, de dispersão e de radar.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
With .Chart.SeriesCollection(1).Points(2)
' Set the background color to green.
.MarkerBackgroundColorIndex = 4
' Set the foreground color to red.
.MarkerForegroundColorIndex = 3
End With
End If
End With