Contourplot with white triangles ...

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
DiVe
Newbie
Newbie
Posts: 4
Joined: Tue Dec 22, 2009 12:00 am

Contourplot with white triangles ...

Post by DiVe » Fri Feb 19, 2010 12:30 pm

Hello,
I would like to ask for the status of the known problem with white triangles and difference in isolines and color regions in the contour plot.
I investigated that this issue has been mentioned here a long time ago. But even in the 2010beta (Delphi7) of TeeChart there is still the same problem.

My problem is that I really need this contour plot in my project, but it is not a very professional output with these white triangles.
And this effect is visible in nearly ever real world data set.

So please could the support team supply me the status or even better a solution for this problem?

Bye,
Dirk

References:
TV52013073
http://www.teechart.net/support/viewtop ... our#p45103
http://www.teechart.net/support/viewtop ... 073#p31048
http://www.teechart.net/support/viewtop ... 073#p40474
Attachments
Bild4.jpg
Bild4.jpg (35.34 KiB) Viewed 22962 times
Bild3.jpg
Bild3.jpg (32.04 KiB) Viewed 22939 times

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

Re: Contourplot with white triangles ...

Post by Narcís » Fri Feb 19, 2010 12:45 pm

Hello Dirk,

The thread references you posted are up to date. This is a complicated issue to resolve. It's high on our priority list but we haven't a solution to it besides completely redesigning Contour and IsoSurface series. We will keep working on the issue for next releases.
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

DiVe
Newbie
Newbie
Posts: 4
Joined: Tue Dec 22, 2009 12:00 am

Re: Contourplot with white triangles ...

Post by DiVe » Fri Feb 19, 2010 2:35 pm

Hi Narcís,
thanks for your rapid reply. So when it is high on the priority list...can I expect a solution in the, let me say, next 2-3 month?
If I can ensure this to my customer it will help me a lot.

Bye,
Dirk

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

Re: Contourplot with white triangles ...

Post by Narcís » Fri Feb 19, 2010 2:36 pm

Hi Dirk,

I'm sorry but I can not commit to that for now as the solution seems to be pretty complex and involve changes in many areas.
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

kville
Newbie
Newbie
Posts: 9
Joined: Fri Dec 17, 2010 12:00 am
Contact:

Re: Contourplot with white triangles ...

Post by kville » Thu Apr 07, 2011 10:52 am

Is there any news on this subject or estimate when this will be corrected?

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

Re: Contourplot with white triangles ...

Post by Narcís » Thu Apr 07, 2011 11:10 am

Hi kville,

Not for now. I recommend you subscribe to: this forum, our RSS news feed, Steema Software's twitter or facebook acounts for new release announcements and what's implemented on them.
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

DiVe
Newbie
Newbie
Posts: 4
Joined: Tue Dec 22, 2009 12:00 am

Re: Contourplot with white triangles ...

Post by DiVe » Tue Apr 12, 2011 12:39 pm

Dear Steema Support,
so it is just about one year that we opened this thread (and regarding the first topics that mentioned this issue it is about 3 years..).
I have reviewed each new release and the list of changes. I also verified the most recent release of TChart, but... no solution for this issue.

Sorry but if this issue has been high on your priority list (see above "It's high on our priority list but ...") then I am glad that I have no issue that is low on you priority list ;-)

So to be serious again: Could you please tell me about the status and if we finally will have a solution?

Kind regards,
Dirk

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Contourplot with white triangles ...

Post by Yeray » Mon Apr 25, 2011 6:22 am

Hello Dirk,

Excuse us for the delayed reply.
As Narcís indicated some posts above, I'm afraid this is quite complex and would involve almost the whole redesign of the series type.
Being a high priority item in the list means we consider it is an important feature but the time until it will be fixed also depends on the complexity of the problem and its solution.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Contourplot with white triangles ...

Post by Yeray » Thu May 12, 2011 12:48 pm

Hello,

We haven't closed the bug ticket yet and more changes still need to be studied to get a final solution for the TContourSeries. But we've implemented some modifications to the TIsoSurfaceSeries and it seems to be drawn without the white triangles.

Here it is the code that reproduces the white triangles problem with v2011.03 but seems to work fine with the actual sources:

Code: Select all

uses TeeSurfa;

var Series1: TIsoSurfaceSeries;

procedure TForm1.FormCreate(Sender: TObject);
var i, j: Integer;
begin
  Chart1.View3D:=false;

  Series1:=Chart1.AddSeries(TIsoSurfaceSeries) as TIsoSurfaceSeries;
  Series1.IrregularGrid:=true;
  Series1.Brush.Style:=bsSolid;

  for i:=0 to 9 do
    for j:=0 to 24 do
      Series1.AddXYZ(i, i*j-random(Round(0.5*i*j)),j);

  Chart1.Axes.Left.SetMinMax(0,24);
end;
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Gerard
Newbie
Newbie
Posts: 7
Joined: Mon Sep 29, 2008 12:00 am
Contact:

Re: Contourplot with white triangles ...

Post by Gerard » Tue May 17, 2011 12:07 am

Do you have any rough indication of when we can expect this fix to be released?

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Contourplot with white triangles ...

Post by Yeray » Tue May 17, 2011 3:30 pm

Hello,

The modification just announced in my last post will be included in the next maintenance release.
The final fix I'm afraid I can't tell you when.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Gerard
Newbie
Newbie
Posts: 7
Joined: Mon Sep 29, 2008 12:00 am
Contact:

Re: Contourplot with white triangles ...

Post by Gerard » Wed Jun 22, 2011 5:25 am

Would I be able to get a copy of this modification, please?

I understand that it may not be ready for final release, but I would gladly help test it out if it meant potentially getting it working sooner.

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Contourplot with white triangles ...

Post by Yeray » Wed Jun 22, 2011 10:10 am

Hello Gerard,

Thanks for the offer.
Since you are an v8 customer and it is a change in the latest sources, we'd need to prepare a new evaluation version for you to do the tests. Could you please tell us what IDE are you using?
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Gerard
Newbie
Newbie
Posts: 7
Joined: Mon Sep 29, 2008 12:00 am
Contact:

Re: Contourplot with white triangles ...

Post by Gerard » Wed Jun 22, 2011 11:58 pm

Yeray,

No worries; I use C++Builder 2009.

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

Re: Contourplot with white triangles ...

Post by Narcís » Thu Jun 23, 2011 7:29 am

Hi Gerard,

Ok, I have arranged a test installer for you. It's being uploaded now. I'll send you an email with the URL when it's available. Please let us know when you have downloaded it as we will remove it from the website.

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