Syntax

expression.SeriesChange(SeriesIndex, PointIndex)

expression A variable that represents a Chart object.

Parameters

Name Required/Optional Data Type Description
SeriesIndex Required Long The offset within the collection for the changed series.
PointIndex Required Long The offset within the collection for the changed point.

Return Value
Nothing

Example

This example changes the point's border color when the user changes the point value.

Visual Basic for Applications
Private Sub Chart_SeriesChange(ByVal SeriesIndex As Long, _ ByVal PointIndex As Long) Set p = Me.SeriesCollection(SeriesIndex).Points(PointIndex) p.Border.ColorIndex = 3 End Sub
series series change Series Change Event SeriesChange serieschange event When user changes the value of a chart data point?

See also: