Page 1 of 1

ActiveX, Polar Series Shadow Visibility Control

Posted: Thu Aug 20, 2009 3:27 pm
by 15049660
Hi,

We are using TeeChart 8 ActiveX control. We have upgraded from version 7 to 8. In our existing software we used the TeeChart having Polar Series and set the gradient. However after upgrading, we found the the Shadow is appearing when the Gradient is set visible which was not in the previous version of OCX.I have tried several ways to set the shadow invisible but I could not do it.
I am using Visual C++ (VS2008)

And I tried following code:
m_Polar.GetPointer().GetShadow().SetHorizSize(1);
m_Polar.GetPointer().GetShadow().SetVertSize(1);
m_Polar.GetPointer().GetShadow().SetTransparency(100);
m_Polar.GetPointer().GetShadow().SetVisible(false);

This is only hiding the shadow of the Points drawn on the Polar Series, however there is still shadow of the Series which i want to hide. From the Editor if I set the Series->Circled->Shadow->Visible false then only I can make it invisible, but I could not do in the program. Please let me know how can I set it invisible in program. The attached files shows the Shadow of the Polar Series and the Editor window where the visible check box is show. I want to access that property.

TR,
Sunil Warke
BNF Technology Inc.

Re: ActiveX, Polar Series Shadow Visibility Control

Posted: Fri Aug 21, 2009 6:50 am
by yeray
Hi Sunil,

The sudden appearing of the shadow when the gradient is activated is a known bug already in the wish list to be fixed in future releases (TV52013189). The strange here is that the workaround of hiding it manually here seems to fork fine:

Code: Select all

  TChart1.Series(0).asPolar.CircleGradient.Visible = True
  TChart1.Series(0).asPolar.Shadow.Visible = False
Could you please check if you are using the latest TeeChart AX available (8.0.0.6)?

Re: ActiveX, Polar Series Shadow Visibility Control

Posted: Fri Aug 21, 2009 10:50 am
by 15049660
Hi,

Thanks for the reply.

We are using 8.0.0.6 version.

I am trying the following code:
m_WndMainTChart.Series(0).GetAsPolar()..... but there is no Shadow related function call.

I am using VC++, kindly let me know if I am missing anything.

TR,
Sunil Warke
BNF Tehnology Inc.

Re: ActiveX, Polar Series Shadow Visibility Control

Posted: Mon Aug 24, 2009 10:40 am
by narcis
Hi Sunil,

Yes, this seems to be missing. I've added the issue (TA05014357) to the defect list to be fixed for next releases.

Re: ActiveX, Polar Series Shadow Visibility Control

Posted: Thu Oct 14, 2010 9:21 am
by narcis
Hi Sunil,

As an update, we found that this already works fine with current TeeChart version.