次の方法で共有


Points コレクション (Excel Graph)

グラフ内の指定されたデータ系列にあるすべての Point オブジェクトのコレクションです。

注釈

Points コレクションを取得するには、Points メソッドを使用します。

単一の Point オブジェクトを返すには、ポイント (index) を使用します。indexポイントのインデックス番号です。 Points are numbered from left to right in the series. Points(1) is the leftmost point, and Points(Points.Count) is the rightmost point.

次の使用例は、グラフのデータ系列 1 の最後のデータ要素にデータ ラベルを追加します。

Dim pts As Points 
Set pts = myChart.SeriesCollection(1).Points 
pts(pts.Count).ApplyDataLabels Type:=xlShowValue

The following example sets the marker style for the third point in series one in the chart. 指定する系列は、2D ライン、散布図、またはレーダー 系列である必要があります。

myChart.SeriesCollection(1).Points(3).MarkerStyle = xlDiamond

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

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