Hi,
I've been a long time TeeChart user but have run across something a little strange. I have a TChart on a form with lots of fun stuff on it, but when I try to run the program I get the error "MyChart->RightWall.EndPosition: Property EndPosition does not exist". But, dang it! The EndPosition property is indeed there in the .dfm file, I can change it. But for some reason it just can't read it? Anyone have any suggestions?
Thanks,
Michael
Property EndPosition Does Not Exist?
-
- Newbie
- Posts: 14
- Joined: Fri Jun 22, 2007 12:00 am
Re: Property EndPosition Does Not Exist?
Hi Michael,
The problem could be caused by a particular combination of properties or setting in your chart. Could you please try to send us an as simple as possible application we can run as-is to reproduce the problem here? Thanks in advance.
Note that the following seems to work as expected:
The problem could be caused by a particular combination of properties or setting in your chart. Could you please try to send us an as simple as possible application we can run as-is to reproduce the problem here? Thanks in advance.
Note that the following seems to work as expected:
Code: Select all
uses series;
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.AddSeries(TLineSeries.Create(self));
Chart1[0].FillSampleValues(25);
Chart1.Walls.Back.Transparent:=false;
Chart1.Walls.Back.Size:=10;
Chart1.Walls.Back.StartPosition:=33;
Chart1.Walls.Back.EndPosition:=66;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Property EndPosition Does Not Exist?
Hi Michael,
In C++Builder, this seems to work fine too:
In C++Builder, this seems to work fine too:
Code: Select all
Chart1->Walls->Back->Transparent=false;
Chart1->Walls->Back->Size=10;
Chart1->Walls->Back->StartPosition=33;
Chart1->Walls->Back->EndPosition=66;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |