Series object (PowerPoint)

Represents a series in a chart.

Remarks

The Series object is a member of the SeriesCollection collection.

Example

Note

Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.

Use SeriesCollection (index), where index is the series index number or name, to return a single Series object. The following example sets the color of the interior for the first series of the first chart in the active document.

The series index number indicates the order in which the series were added to the chart. SeriesCollection(1) is the first series added to the chart, and SeriesCollection(SeriesCollection.Count) is the last one added.

With ActiveDocument.InlineShapes(1)

    If .HasChart Then

        .Chart.SeriesCollection(1).Interior.Color = RGB(255, 0, 0)

    End If

End With

Methods

Name
ApplyDataLabels
ClearFormats
Copy
DataLabels
Delete
ErrorBar
Paste
Points
Select
Trendlines

Properties

Name
Application
ApplyPictToEnd
ApplyPictToFront
ApplyPictToSides
AxisGroup
BarShape
BubbleSizes
ChartType
Creator
ErrorBars
Explosion
Format
Formula
FormulaLocal
FormulaR1C1
FormulaR1C1Local
Has3DEffect
HasDataLabels
HasErrorBars
HasLeaderLines
InvertColor
InvertColorIndex
InvertIfNegative
IsFiltered
LeaderLines
MarkerBackgroundColor
MarkerBackgroundColorIndex
MarkerForegroundColor
MarkerForegroundColorIndex
MarkerSize
MarkerStyle
Name
Parent
ParentDataLabelOption
PictureType
PictureUnit2
PlotColorIndex
PlotOrder
QuartileCalculationInclusiveMedian
Shadow
Smooth
Type
Values
XValues

See also

PowerPoint Object Model Reference

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.