Page 1 of 1

Cursor tool have't snap style property in Builder 2007

Posted: Thu Feb 21, 2008 8:22 am
by 9349531
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.

Posted: Thu Feb 21, 2008 10:29 am
by narcis
Hi GAN,

Property below is available for me here using v7.12 in C++ Builder.

Code: Select all

	ChartTool1->Style = cssBoth;
Could you please check that v7.12 is properly installed on your IDE?

Thanks in advance.

Cursor tool have't snap style property in Builder 2007

Posted: Wed Feb 27, 2008 1:37 pm
by 9349531
HI NarcĂ­s,
I talk about property TSnapStyle:SnapStyle

Code: Select all

ChartTool1->SnapStyle = ssVertical;
TSnapStyle was defined as

Code: Select all

enum TSnapStyle { ssDefault, ssHorizontal, ssVertical };

Posted: Tue Mar 04, 2008 11:50 am
by Pep
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 :

Code: Select all

ChartTool1->SnapStyle = TSnapStyle(2);  // for Vertical..