Page 1 of 1

Polar plot track

Posted: Sat Dec 17, 2005 4:59 am
by 4215646
I am trying to plot a track, starting at the center of a polar plot. But the data is sorted before plotting. Is there any way to turn the sort off? I am using Ver 5.0 for Borland C++ Builder.

Posted: Mon Dec 19, 2005 9:43 am
by narcis
Hi charlie,

This should happen, you could try using:

Code: Select all

  Series1.XValues.Order:=loNone;
  Series1.YValues.Order:=loNone;
If this doesn't help, could you please send us an example we can run "as-is" to reproduce the problem here? You can post your files at [url]news://www.steema.net/steema.public.attachments[/url] newsgroup.

BTW: Which TeeChart version are you using?

Posted: Wed Dec 21, 2005 4:53 pm
by 4215646
That fixed my problem. I am using version 5.01. I probably should upgrade to the latest version.
Chuck