How to rotate a contour map by 90 degrees clockwise?

TeeChart for ActiveX, COM and ASP
Post Reply
Andras
Newbie
Newbie
Posts: 40
Joined: Thu Oct 14, 2004 4:00 am
Location: Hungary

How to rotate a contour map by 90 degrees clockwise?

Post by Andras » Tue Jul 10, 2007 2:13 pm

Dear Supprot

I use the following loop to add some values to a contour map. (I've taken it from some of your examples)

.
.
.

Const NX As Integer = 50 ' Grid size in X direction.
Const NY As Integer = 50 ' Grid size in Y direction.

Dim XARRAY((NX + 1) * (NY + 1)) As Integer
Dim YARRAY((NX + 1) * (NY + 1)) As Single
Dim ZARRAY((NX + 1) * (NY + 1)) As Integer

COUNTVAL = 0

For I = 0 To NX
For J = 0 tTo NY
XARRAY(COUNTVAL + J) = I
ZARRAY(COUNTVAL + J) = J
YARRAY(COUNTVAL + J) = ZVALUES(I, J)
Next J
COUNTVAL = (I + 1) * (NY + 1)
Next I
'
' Add calculated YARRAY to chart.
'
frm2DResults.TChartContour.Series(0).Clear
frm2DResults.TChartContour.Series(0).asContour.AddArrayXYZ XARRAY, YARRAY, ZARRAY

.
.
.

It seems however, that my resulting contour map is rotated by 90 degrees counter clockwise. How could I rotate it back by 90 degrees clockwise? ZVALUES(I,J) is obtained from a kriging procedure not detailed here.

Tx in advance, best regards

Andras

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Wed Jul 11, 2007 8:54 am

Hi Andras,

I'm sorry, I'm not sure what you refer here. Would you be so kind to send me a simple app. with which I can reproduce as is the problem here ?
You can send me it directly to pep@steema.com

Andras
Newbie
Newbie
Posts: 40
Joined: Thu Oct 14, 2004 4:00 am
Location: Hungary

Post by Andras » Fri Jul 13, 2007 2:38 pm

Dear Pep

In the meantime I managed to solve it. Thank you for any effort to help me.

best regards

Andras

Post Reply