Hello,
I just upgraded from 8.06 to 8.07 and noticed that plots with Grid Lines set to Small Dots and an Anti-alias tool makes the grid appear as solid line. You may check this if you just drop a TChart on a form, set left axis grid to small dots and finally add anti-alias in the tools section.
I have not received any errors regarding TChar installation after the upgrade (using Turbo Delphi Pro and WinXP)
Regards
Is this a bug? I need a quick fix please!!!
Re: Is this a bug? I need a quick fix please!!!
Hi johnnix,
I could reproduce it so I've added it to the defect list to be fixed in future releases (TV52014825).
Note that, as you've seen this works fine in v8.06 and also in v2010.
I could reproduce it so I've added it to the defect list to be fixed in future releases (TV52014825).
Note that, as you've seen this works fine in v8.06 and also in v2010.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Is this a bug? I need a quick fix please!!!
Hello,
Thank you very much for your prompt reply. So, are you suggesting to roll back to 8.06? Is there any way to get a "hint" where to look for this error? It is too soon for me to upgrade to version 2010
Regards
Thank you very much for your prompt reply. So, are you suggesting to roll back to 8.06? Is there any way to get a "hint" where to look for this error? It is too soon for me to upgrade to version 2010
Regards
Re: Is this a bug? I need a quick fix please!!!
Hi johnnix,
With GDI+, the problem doesn't appear:
With GDI+, the problem doesn't appear:
Code: Select all
uses series, TeeGDIPlus;
procedure TForm1.FormCreate(Sender: TObject);
var g: TGDIPlusCanvas;
begin
Chart1.AddSeries(TLineSeries.Create(self));
Chart1[0].FillSampleValues();
Chart1.Axes.Left.Grid.SmallDots:=true;
g:=TGDIPlusCanvas.Create;
Chart1.Canvas:=g;
g.AntiAlias:=true;
g.AntiAliasText:=true;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Is this a bug? I need a quick fix please!!!
Hi johnnix,
We have been investigating the issue further and found that it also happens with v2010. The problem seems to be only present in older Delphi versions, up to Delphi 2006. Which Delphi version are you using?
Thanks in advance.
We have been investigating the issue further and found that it also happens with v2010. The problem seems to be only present in older Delphi versions, up to Delphi 2006. Which Delphi version are you using?
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 |
Instructions - How to post in this forum |
Re: Is this a bug? I need a quick fix please!!!
Hello Narcis,
I am using Turbo Delphi Pro Does this mean that there is no way to fix it?
Regards
I am using Turbo Delphi Pro Does this mean that there is no way to fix it?
Regards
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Is this a bug? I need a quick fix please!!!
Hi johnnix,
Thanks for the info. I'm not sure, further investigation is needed. This is just to confirm what we found.
Thanks for the info. I'm not sure, further investigation is needed. This is just to confirm what we found.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Is this a bug? I need a quick fix please!!!
Hi johnnix,
As said here, I'll try to explain the status of this problem (TV52014825).
We've made some tests more that show more (yes, even more) strange results, but we aren't sure about the cause of them.
As said before, we've found that this only occurs with older Delphi versions up to Delphi 2006. With Delphi 2007 and above works fine, so it could be a bug in old Delphis.
In addition to this, the problem seems to be in the combination of TAntiAliasCanvas (used in TAntialiasTool) with some perspective of the grid lines. We observed that rotating the chart the grid lines change from smalldots to solid lines and vice-versa:
As said here, I'll try to explain the status of this problem (TV52014825).
We've made some tests more that show more (yes, even more) strange results, but we aren't sure about the cause of them.
As said before, we've found that this only occurs with older Delphi versions up to Delphi 2006. With Delphi 2007 and above works fine, so it could be a bug in old Delphis.
In addition to this, the problem seems to be in the combination of TAntiAliasCanvas (used in TAntialiasTool) with some perspective of the grid lines. We observed that rotating the chart the grid lines change from smalldots to solid lines and vice-versa:
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |