I get an Access violation when clicking the Drag Point tool in the TeeChart 2010 demo.
Just for your information.
Access violation when clicking the Drag Point tool in the Te
Access violation when clicking the Drag Point tool in the Te
- Attachments
-
- Access violation when clicking Drag Point.JPG (152.1 KiB) Viewed 9428 times
Re: Access violation when clicking the Drag Point tool in the Te
Hi ChartIt,
I cannot reproduce it, but there is another error in this demo.
When I click the line between point 2 and 3, it selects point 1.
This is consistent for all lines: cliking the line between point x and x + 1, selects point x - 1.
Regards,
Bert
I cannot reproduce it, but there is another error in this demo.
When I click the line between point 2 and 3, it selects point 1.
This is consistent for all lines: cliking the line between point x and x + 1, selects point x - 1.
Regards,
Bert
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Access violation when clicking the Drag Point tool in the Te
Hello everyone,
I can't reproduce any of those here using our current sources. Code snippet below works fine for me here. Can you please check if it works fine at your end? Can you modify it so that we can reproduce the issue here? If you are TeeChart 2010 VCL source code customers I could provide our latest sources for you to test.
I can't reproduce any of those here using our current sources. Code snippet below works fine for me here. Can you please check if it works fine at your end? Can you modify it so that we can reproduce the issue here? If you are TeeChart 2010 VCL source code customers I could provide our latest sources for you to test.
Code: Select all
uses Series;
procedure TForm1.FormCreate(Sender: TObject);
var Series1: TLineSeries;
begin
Series1:=TLineSeries.Create(Self);
Series1.FillSampleValues;
Series1.Pointer.Visible:=True;
Chart1.AddSeries(Series1);
end;
procedure TForm1.Chart1MouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Integer);
begin
Caption:=IntToStr(Chart1[0].Clicked(X,Y));
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 |
Re: Access violation when clicking the Drag Point tool in the Te
Hi Narcís,
Regards,
Bert
Did you check thisI can't reproduce any of those here using our current sources.
with the demo application on the website? Maybe it's time to update it.When I click the line between point 2 and 3, it selects point 1.
This is consistent for all lines: clicking the line between point x and x + 1, selects point x - 1.
Regards,
Bert
Re: Access violation when clicking the Drag Point tool in the Te
Hello,
We've updated the compiled features demo here recently. I can't reproduce the error in the first post and neither the problem with the indexes.
Could you please confirm it?
We've updated the compiled features demo here recently. I can't reproduce the error in the first post and neither the problem with the indexes.
Could you please confirm it?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Access violation when clicking the Drag Point tool
Hi Yeray,
My issue has been solved in the new demo, but you might update the text on the website:
My issue has been solved in the new demo, but you might update the text on the website:
BertTeeChart compiled demo
version : 2010 / date: June 01, 2010
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Access violation when clicking the Drag Point tool in the Te
Hi Bert,
Thanks for pointing this out. I have updated it to 17th November 2010 which was the date when I posted the current demo.
Thanks for pointing this out. I have updated it to 17th November 2010 which was the date when I posted the current demo.
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 |