Hi,
We have used the Steema.Teechart.Styles.Shape and it's DblClick event handler with TeeChart v1.0. Now with v2.0 that is not getting fired anymore. I created a simple test app, added a shape series and noticed that the DblClick gets fired by the Mouse Right button double click!. Is there a way to configure it to use the Left button doubleclick, which is the normal behaviour? The TeeChart version that we have is: 2.0.2489.20960. In the actual application, we show the Context menu with Right mouse button, so this 'workaround' does not work in that case.
DoubleClick on shape series
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi HQO,
It works using the left mouse button for me here using latest TeeChart for .NET v2 maintenance release available at the client area. Could you please try using latest version available?
If the problem persists please send us a simple example project we can run "as-is" to reproduce the problem here.
You can post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
It works using the left mouse button for me here using latest TeeChart for .NET v2 maintenance release available at the client area. Could you please try using latest version available?
If the problem persists please send us a simple example project we can run "as-is" to reproduce the problem here.
You can post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
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 |
I have uploaded a simple test solution through the Upload page (TCTest.zip), it should show up a messagebox when the shape is double clicked. I first had the 1.1 dll referenced, with that one Double click worked with both Left and Right buttons. Then I changed the teeChart reference to this new 2.0 dll, after that neither of those worked.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi HQO,
Thanks for the example. We could reproduce the issue here. This a known issue in latest TeeChart for .NET v2 maintenance release which we have already fixed for the next release. We expect it to be out during next week.
Thanks for the example. We could reproduce the issue here. This a known issue in latest TeeChart for .NET v2 maintenance release which we have already fixed for the next release. We expect it to be out during next week.
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 HQO,
Thanks for reporting. This seem to have been broken again. However it worked in Build 2.0.2586.24038. I've just sent you a forums private message with the URL where you can download this build. Could you please test if it work fine at your end?
We will try to fix this issue for the next maintenance release.
Thanks for reporting. This seem to have been broken again. However it worked in Build 2.0.2586.24038. I've just sent you a forums private message with the URL where you can download this build. Could you please test if it work fine at your end?
We will try to fix this issue for the next maintenance release.
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 HQO,
After reviewing the issue again we have found it is not a bug, what was preventing the event being fired is that your application allows zooming. To avoid event conflicts, series' DblClick event is only fired when zoom is disabled:
After reviewing the issue again we have found it is not a bug, what was preventing the event being fired is that your application allows zooming. To avoid event conflicts, series' DblClick event is only fired when zoom is disabled:
Code: Select all
tChart1.Zoom.Allow = false;
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 |