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
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
Hi wind_flying,
Yes, it seems to be a problem with this property in Visual C++. In VB6 the following works fine:
TChart1.Series(0).asPolar.Circled = True
While in C++ this gives a “Member not found” error:
m_Chart1.Series(0).GetAsPolar().SetCircled(true);
I’ve added it to the bug list to be fixed in next releases (TA05014604).