Hi,
I am using TeeChart 2011.0.0.5 ActiveX. I feel TeeChartDefines.h doesn't content all the values to configure a chart, as it can be done by the TeeChart Editor. For example, I am looking to change the General/Mouse/Wheel/Scroll Axes property to None [possible values are Normal (default)/None/Inverted]. I didn't find these values in TeeChartDefines.h. Are they located somewhere else?
BR/
Pascal
Missing constant in TeeChartDefines.h
Re: Missing constant in TeeChartDefines.h
Hi Pascal,
You are right. I've added the following to the TeeChartDefines.h for the next release.
You are right. I've added the following to the TeeChartDefines.h for the next release.
Code: Select all
// EPanMouseWheel
const unsigned long pmwNormal = 0;
const unsigned long pmwInverted = 1;
const unsigned long pmwNone = 2;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Missing constant in TeeChartDefines.h
Dear Yeray,
This is exactly what I needed. Thank you !
Regards,
Pascal
This is exactly what I needed. Thank you !
Regards,
Pascal
Re: Missing constant in TeeChartDefines.h
You are welcome, Pascal.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |