ChartFont.Color Property (Word)
Returns or sets the primary color of the object. Read/write Variant.
Version Information
Version Added: Word 2007
Syntax
expression .Color
expression A variable that represents a ChartFont object.
Example
The following example sets the color of the tick-mark labels on the value axis for the first chart in the active document.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
Chart.Axes(xlValue).TickLabels.Font.Color = _
RGB(0, 255, 0)
End If
End With