Polar series
Posted: Mon Feb 16, 2009 5:03 am
1. I have Steema.TeeChart.Styles.Polar series and i am wondering what is the order of populating the series. I am wondering what is the order of populating the series.
is the following code correct?
My question is myPolar.add(myAngle, myRadius) or myPolar.add(myRadius, myAngle)?
2. I need to access the above series (of type Steema.TeeChart.Styles.Polar) based on point number. I tried to access as follows.
myX = myPolar.Item(myPointNumber).X
myY = myPolar.Item(myPointNumber).Y
The above way of access is giving wrong values. I do not know if this is the right way of doing it. All i need is to get is the X,Y value at the point number. Please suggest something
is the following code correct?
Code: Select all
dim myPolar as new Steema.TeeChart.Styles.Polar
myPolar.add(myAngle, myRadius)
2. I need to access the above series (of type Steema.TeeChart.Styles.Polar) based on point number. I tried to access as follows.
myX = myPolar.Item(myPointNumber).X
myY = myPolar.Item(myPointNumber).Y
The above way of access is giving wrong values. I do not know if this is the right way of doing it. All i need is to get is the X,Y value at the point number. Please suggest something