

| Type | Description |
Once the ViewChange event occurs the following properties are updated:
Similarly, the internal eXGraph control is updated automatically based on this information. (only if the ControlID property is "exontrol.graph")
The following example shows how you can change the direction of the series (Vertical property of the Serie object) (only if the ControlID property is "exontrol.graph")
Private Sub Pivot1_ViewChange()
With Pivot1.CustomView
If Not .Object Is Nothing Then
.Object.BeginUpdate
With .Object.Series
For i = 0 To .Count - 1
.Item(i).Vertical = True
Next
End With
.Object.EndUpdate
End If
End With
End Sub
so they show as:
