Problem in axis title.

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
drillright40
Newbie
Newbie
Posts: 57
Joined: Mon Nov 19, 2007 12:00 am

Post by drillright40 » Tue Aug 05, 2008 1:39 pm

Hi Christopher,
One of the person who is having some idea about 3D plot implementation in old application.
His comment is
////////Start
TeeChart has many different 3D chart components. Within these 3D
components TeeChart has wireframe and multi-colored surface plotting
code as standard features, so all the rotation coordinate calculations
should be within the existing Steema code.

By default, however, TeeChart only colors the individual surface panels
using the z-axis coordinate value, so what the previous developers did
was simply modify the color selection part of the 3D surface drawing to
incorporate the pattern datastream color thresholds. The input array
had to be modified to include a fourth datastream. As explicitly
described in the requirements document, you must also linearly
interpolate the coordinates of the bin corners in order to generate the
input arrays.

Neither of the last version of our application nor last to last version of our application programmers expressed any difficulty with this
task. I suspect you need to ensure you are using the variable z-axis
color component as a starting point.
///////End

Can we get some idea about our problem by his comments???

Regards,
Sanyog

Christopher
Site Admin
Site Admin
Posts: 1349
Joined: Thu Jan 01, 1970 12:00 am
Location: Riudellots de la Selva, Catalonia
Contact:

Post by Christopher » Tue Aug 05, 2008 2:58 pm

drillright40 wrote: Can we get some idea about our problem by his comments???
Thank you for passing the information on.

I understand how frustrating this problem is for you but I'm afraid to say that a workaround for this problem is not going to be simple.

A complicated workaround would be using reflector (http://www.aisto.com/roeder/dotnet/) to study the teechart.net v1 surface series code and then using this as your inspiration to create your own series type deriving from the teechart.net v3 surface series and overriding the necessary methods.

As I say, I do not think there is a simple workaround to this issue. I'm sorry.
Thank you!

Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/

drillright40
Newbie
Newbie
Posts: 57
Joined: Mon Nov 19, 2007 12:00 am

Status of (TF02013295)

Post by drillright40 » Thu Dec 11, 2008 12:30 pm

Hello,
There is a defect logged in related to surface plotting in teechart control.
(TF02013295). Can you please tell me when I can expect the release in which this defect would have been resolved.

Regards,
Sanyog

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Dec 11, 2008 12:49 pm

Hi Sanyog,

I've checked the issue here again and I see it isn't fixed with current version available at the client area but works fine using our current sources so you may expect this to be fixed for the next maintenance release which we expect to be out next week.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

drillright40
Newbie
Newbie
Posts: 57
Joined: Mon Nov 19, 2007 12:00 am

Post by drillright40 » Mon Dec 29, 2008 11:07 am

Hi,
I have taken the latest teechart control (dated 19th December 2008) but problem still persists (TF02013295). Could you please verify and update me.

Regards,
Sanyog

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Mon Jan 05, 2009 8:22 am

Hi Sanyog,

Using code below with latest maintenance release I get this:

Image

Code: Select all

		public Form1()
		{
			InitializeComponent();
			InitializeChart();
		}		

		private void InitializeChart()
		{
			Steema.TeeChart.Data.XmlSource xmlSource1 = new Steema.TeeChart.Data.XmlSource(tChart1.Chart);
			xmlSource1.Load(@"c:\temp\DrillRight.xml");

			if (tChart1.Series.Count > 0)
			{
				if (tChart1[0] is Steema.TeeChart.Styles.Surface)
				{
					((Steema.TeeChart.Styles.Surface)tChart1[0]).IrregularGrid = true;
				}
			}
		}
Do you get the same chart? If so, what's wrong with it?

Thanks in advance.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply