Page 1 of 1

problem about Polar Series,SetCircled function

Posted: Mon Dec 21, 2009 4:21 pm
by 15054313
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

Re: problem about Polar Series,SetCircled function

Posted: Tue Dec 22, 2009 10:33 am
by yeray
Hi wind_flying,

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
While in C++ this gives a "Member not found" error:

Code: Select all

m_Chart1.Series(0).GetAsPolar().SetCircled(true);
I've added it to the bug list to be fixed in next releases (TA05014604).