Series.Smooth Property (Word)
True if curve smoothing is enabled for the line chart or scatter chart. Read/write Boolean.
Version Information
Version Added: Word 2007
Syntax
expression .Smooth
expression A variable that represents a Series object.
Remarks
This property applies only to line and scatter charts.
Example
The following example enables curve smoothing for series one for the first chart in the active document. You should run the example on a 2-D line chart.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.SeriesCollection(1).Smooth = True
End If
End With