Chart.HasLegend (Word)
Cette propriété a la valeur True si le graphique possède une légende.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
With .Chart
.HasLegend = True
.Legend.Font.ColorIndex = 5
End With
End If
End With