I am using the TeeChart Pro 7.07 version for C++Builder6.
In this component version Cursor tool has property Style: TCursorToolStyle;
There is no such property in the version of a component for C++Builder2007
(TeeChart Pro v.7.12 Win32).
Without this property the cursor is drawn not on a series line. It looks like bug!
Please back this property for version of a component for C++Builder2007 or fix this bug.
Cursor tool have't snap style property in Builder 2007
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi GAN,
Property below is available for me here using v7.12 in C++ Builder.
Could you please check that v7.12 is properly installed on your IDE?
Thanks in advance.
Property below is available for me here using v7.12 in C++ Builder.
Code: Select all
ChartTool1->Style = cssBoth;
Thanks in advance.
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 |
Cursor tool have't snap style property in Builder 2007
HI Narcís,
I talk about property TSnapStyle:SnapStyle
TSnapStyle was defined as
I talk about property TSnapStyle:SnapStyle
Code: Select all
ChartTool1->SnapStyle = ssVertical;
Code: Select all
enum TSnapStyle { ssDefault, ssHorizontal, ssVertical };
Hi GAN,
yes, using this property in C++2007 there's an ambiguity with the 'Stdctrls::ssVertical'.
I've added this issue on our bug/wish to change it for the next releases. In meantime a solution is to assign it by using :
yes, using this property in C++2007 there's an ambiguity with the 'Stdctrls::ssVertical'.
I've added this issue on our bug/wish to change it for the next releases. In meantime a solution is to assign it by using :
Code: Select all
ChartTool1->SnapStyle = TSnapStyle(2); // for Vertical..
Pep Jorge
http://support.steema.com
http://support.steema.com