Search found 6 matches

by tequilla
Wed Apr 18, 2007 2:10 am
Forum: .NET
Topic: Chart 2D mode.
Replies: 2
Views: 5092

Hi Edu.

But it's still 3D mode and I don't gain the speed in this case. Ok, I see it's better to use ColorGrid but I need rotate it on 90 deg. right to add vertical columns to the end using ADD method and delete usind DELETE.
by tequilla
Tue Apr 17, 2007 9:22 am
Forum: .NET
Topic: Chart 2D mode.
Replies: 2
Views: 5092

Chart 2D mode.

Hello!

I have surface. I want to disable 3D to achieve high speed but I need to see my surface from above (to see x,z axes insteed of x,y). How can I set 2D view direction?

thank you.
by tequilla
Mon Apr 16, 2007 7:43 am
Forum: .NET
Topic: How to move data in Surface?
Replies: 1
Views: 4211

How to move data in Surface?

Problem: I have array [x,y,z]. It is reflection of steel strip in realtime. x-depth of the screen 300. y-array of 192 points I receive every 200ms z- high of these points. So I have 192 new y,z points every 200ms. How to set Chart behaviour if need following: when I add 301 row of y,z points, all da...
by tequilla
Mon Apr 02, 2007 9:54 am
Forum: .NET
Topic: Setting Z axis using Waterfall
Replies: 4
Views: 7553

Thank you very much!
My problem was I didn't define the type of the chart.
That is why I couldn't input the 3rd parameter in add method as Z value.
by tequilla
Mon Apr 02, 2007 9:03 am
Forum: .NET
Topic: Setting Z axis using Waterfall
Replies: 4
Views: 7553

Hi Tequilla You can read how "3D series" work in the following post . It is explained in VCL, but in NET it's the same. Thank you Edu. I have read the topic, but I can't find addXYZ method in .NET TeeChart. There is possibility to add points using "add" method only. I can't add Z value using this m...
by tequilla
Mon Apr 02, 2007 3:13 am
Forum: .NET
Topic: Setting Z axis using Waterfall
Replies: 4
Views: 7553

Setting Z axis using Waterfall

Hello! I use "waterfall" and I add points using code like this: for (int i = 0; i <= 40; i++) { tChart1.Series[0].Add(i, (autoRand.Next(100))); } But I really don't know how to access to Z level. How can I set the new Z level when I add new (x,y) array of points? Thank you.