Series オブジェクト (PowerPoint)

グラフのデータ系列を表します。

注釈

Series オブジェクトは SeriesCollection コレクションのメンバーです。

注:

[!メモ] 次のコードは Microsoft Word 用ですが、少し変更を加えることで PowerPoint に適用できます。

の Series オブジェクトを返すには、SeriesCollection (index) を使用します。index は系列のインデックス番号または名前です。 次の使用例は、作業中の文書の最初のグラフのデータ系列の内部の色を設定します。

データ系列のインデックス番号は、データ系列がグラフに追加された順序と対応します。 SeriesCollection(1) はグラフに最初に追加されたデータ系列で、 SeriesCollection(SeriesCollection.Count) は最後に追加されたデータ系列です。

With ActiveDocument.InlineShapes(1)

    If .HasChart Then

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

    End If

End With

メソッド

名前
ApplyDataLabels
ClearFormats
Copy
DataLabels
Delete
ErrorBar
Paste
Points
Select
Trendlines

プロパティ

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

関連項目

PowerPoint Object Model Reference

サポートとフィードバック

Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。