problem about Polar Series,SetCircled function

TeeChart for ActiveX, COM and ASP
Post Reply
wind_flying
Newbie
Newbie
Posts: 1
Joined: Fri Sep 25, 2009 12:00 am

problem about Polar Series,SetCircled function

Post by wind_flying » Mon Dec 21, 2009 4:21 pm

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

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: problem about Polar Series,SetCircled function

Post by Yeray » Tue Dec 22, 2009 10:33 am

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).
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply