Hello,
I have a problem with the TSelectorTool.... when it is enabled, I can not drag the graph title without moving series displayed in the same time. With the legend there is no problem (when I drag the legend series are not moved).
Any idea of the pb ?
Franck
TSelectorTool
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Franck,
It works fine here for me using the latest version available (v7.04). Are you using this version? If so could you please send us a sample application we can run "as-is" to reproduce the problem here?
You can post your examples at [url]news://www.steema.net/steema.public%20attachments[/url] newsgroup.
It works fine here for me using the latest version available (v7.04). Are you using this version? If so could you please send us a sample application we can run "as-is" to reproduce the problem here?
You can post your examples at [url]news://www.steema.net/steema.public%20attachments[/url] newsgroup.
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 Franck,
Using the code below works fine:
Using the code below works fine:
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
begin
Series1.FillSampleValues(200);
Chart1.AllowPanning:=pmBoth;
Chart1.ScrollMouseButton:=mbLeft;
Chart1.Zoom.MouseButton:=mbRight;
end;
procedure TForm1.Chart1MouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Integer);
begin
if Chart1.Title.Clicked(X,Y) then
Chart1.AllowPanning:=pmNone
else
Chart1.AllowPanning := pmBoth;
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 |