When i Write " m_TChart.Series(0).GetAsPolar.SetCircled(TRUE) " in my program,it throwed an exception: "can not find member",why?
I Have add Polar Series beforehand, SetCircled function does not work correctly
problem about Polar Series,SetCircled function
-
- Newbie
- Posts: 1
- Joined: Fri Sep 25, 2009 12:00 am
Re: problem about Polar Series,SetCircled function
Hi wind_flying,
Yes, it seems to be a problem with this property in Visual C++. In VB6 the following works fine:
While in C++ this gives a "Member not found" error:
I've added it to the bug list to be fixed in next releases (TA05014604).
Yes, it seems to be a problem with this property in Visual C++. In VB6 the following works fine:
Code: Select all
TChart1.Series(0).asPolar.Circled = True
Code: Select all
m_Chart1.Series(0).GetAsPolar().SetCircled(true);
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |