Having to constantly check the type of a an object in order to know what to do with it is not a good OOP programming technique, but that's up to you.
The array of chart objects added to the ChartView can be obtained by calling the ChartView's GetChartObjectsArrayList method. It returns a reference to the internal ArrayList used to store the objects. An ArrayList is .Net System.Collections object.
Dim cvobjarray As ArrayList = Me.GetChartObjectsArrayList()
Dim cvobj As GraphObj
Dim i As Integer
For i = 0 To cvobjarray.Count - 1
cvobj = cvobjarray(i)
Next i