TeeChart Pro v7.05 VCL update available
TeeChart Pro v7.05 VCL update available
Since forum users might be expected to be interested in updates to issues the forums address, notice that TeeChart Pro v7.05 VCL was posted to the Customer Download Area.
Is there a change log somewhere ? The binary installer version - What's New - FixedBugs.htm is from 2002 Version 6. As many of the bugs reported here have a work around given, I'd like to be able to identify which have been fixed so I could remove the work around from existing programs and begin using the correct approach. At this point, the only way I see is to go back and retest code that was producing the bug and see if it's been fixed. By now I've forgotten many of them since I either have a work around or have ignored or not implemented a feature because of a bug. I'd like to know of bugs that are fixed so such features could now be used.
Similarily, is there a list of added features or properties ?
Steve
Is there a change log somewhere ? The binary installer version - What's New - FixedBugs.htm is from 2002 Version 6. As many of the bugs reported here have a work around given, I'd like to be able to identify which have been fixed so I could remove the work around from existing programs and begin using the correct approach. At this point, the only way I see is to go back and retest code that was producing the bug and see if it's been fixed. By now I've forgotten many of them since I either have a work around or have ignored or not implemented a feature because of a bug. I'd like to know of bugs that are fixed so such features could now be used.
Similarily, is there a list of added features or properties ?
Steve
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Steve,
You'll find this information on our Version Info web page, specially following the release notes link that leads to Release.txt.
You'll find this information on our Version Info web page, specially following the release notes link that leads to Release.txt.
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Steve,
It is already included at TeeChart's folder created by the binary installers.
When bugs are fixed they are also included here.
This is a property used when pen is SmallDots and indicates the space between those points.
Could Release.txt be included with the downloaded files ?
It is already included at TeeChart's folder created by the binary installers.
It describes Additions. Is there a bug fix list also ?
When bugs are fixed they are also included here.
Can you give more details on what the following are including what the actual Delphi properties are :
-TChartPen SmallSpace integer property.
This is a property used when pen is SmallDots and indicates the space between those points.
This is a new property added to series marks.-TMarksItem Text (TStrings)
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 |
The only installed release.txt file I can find is dated 2/14/2005 and does not have any information on Ver 2.05 as does the release.txt on your web site.It is already included at TeeChart's folder created by the binary installers.
When bugs are fixed they are also included here.
I've not been able to identify the actual property to use. Neither of the following are valid :-TChartPen SmallSpace integer property
This is a property used when pen is SmallDots and indicates the space between those points.
chart1.SmallSpace
series1.Pen.SmallSpace
I also cannot identify the correct property to use.-TMarksItem Text (TStrings)
This is a new property added to series marks.
series1.Marks.Item[0].Text is invalid.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi SteveP,
Yes, you are right about that. I'll try to find out what happened with that and I'll get back to you when I have some news.The only installed release.txt file I can find is dated 2/14/2005 and does not have any information on Ver 2.05 as does the release.txt on your web site.
This property works fine here, try using something like the snippet below to appreciate it.I've not been able to identify the actual property to use. Neither of the following are valid :
chart1.SmallSpace
series1.Pen.SmallSpace
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.View3D:=false;
Series1.FillSampleValues(); //Line Series
Series2.FillSampleValues(); //Line Series
Series1.Pen.SmallDots:=true;
Series1.Pen.SmallSpace:=2;
Series2.Pen.SmallDots:=true;
Series2.Pen.SmallSpace:=5;
end;
An example on how to use it would be:I also cannot identify the correct property to use.
series1.Marks.Item[0].Text is invalid.
Code: Select all
// customize another mark...
with Series1.Marks[5] do
begin
Font.Size:=12;
Font.Color:=clWhite;
Color:=clNavy;
ShapeStyle:=fosRoundRectangle;
Shadow.Size:=4;
Shadow.Transparency:=60;
Shadow.Color:=clDkGray;
Text.Add('One');
end;
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 |
Using either the 7.05 binary or source code with file dates of Oct 10, I get [Error] Undeclared identifier: 'SmallSpace'This property works fine here, try using something like the snippet below to appreciate it.
Code: Select all
procedure TForm1.FormCreate(Sender: TObject); begin Chart1.View3D:=false; Series1.FillSampleValues(); //Line Series Series2.FillSampleValues(); //Line Series Series1.Pen.SmallDots:=true; Series1.Pen.SmallSpace:=2; Series2.Pen.SmallDots:=true; Series2.Pen.SmallSpace:=5; end;
Delphi 7 with XP SP2, happens on two computers.
Right-click on a chart in delphi, it says 7.05
I do see the following new features for esxample :
-TArrowSeries Clicked method.
-TArrowSeries ArrowPercent property.
-TAxisArrowTool HeadWidth (integer) and SizePercent (integer %)
At the Text.Add('One') line I getCode: Select all
// customize another mark... with Series1.Marks[5] do begin Font.Size:=12; Font.Color:=clWhite; Color:=clNavy; ShapeStyle:=fosRoundRectangle; Shadow.Size:=4; Shadow.Transparency:=60; Shadow.Color:=clDkGray; Text.Add('One'); end;
[Error] Record, object or class type required
Steve
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Steve,
It would seem that your Delphi is still referencing old TeeChart .dcu's. You should try removing the old ones and compile and reinstall TeeChart using Recompile tool provided with the source code installer.
It would seem that your Delphi is still referencing old TeeChart .dcu's. You should try removing the old ones and compile and reinstall TeeChart using Recompile tool provided with the source code installer.
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Steve,
You're welcome. I'm glad to hear it was finally solved.
You're welcome. I'm glad to hear it was finally solved.
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 |