ActiveX, Polar Series Shadow Visibility Control

TeeChart for ActiveX, COM and ASP
Post Reply
sunil
Newbie
Newbie
Posts: 2
Joined: Fri Jul 18, 2008 12:00 am

ActiveX, Polar Series Shadow Visibility Control

Post by sunil » Thu Aug 20, 2009 3:27 pm

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.
Attachments
TeeChartPolarShadow.JPG
TeeChart Polar Series Shadow Visibility
TeeChartPolarShadow.JPG (107.07 KiB) Viewed 5688 times

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

Re: ActiveX, Polar Series Shadow Visibility Control

Post by Yeray » Fri Aug 21, 2009 6:50 am

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)?
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

sunil
Newbie
Newbie
Posts: 2
Joined: Fri Jul 18, 2008 12:00 am

Re: ActiveX, Polar Series Shadow Visibility Control

Post by sunil » Fri Aug 21, 2009 10:50 am

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.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: ActiveX, Polar Series Shadow Visibility Control

Post by Narcís » Mon Aug 24, 2009 10:40 am

Hi Sunil,

Yes, this seems to be missing. I've added the issue (TA05014357) to the defect list to be fixed for next releases.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: ActiveX, Polar Series Shadow Visibility Control

Post by Narcís » Thu Oct 14, 2010 9:21 am

Hi Sunil,

As an update, we found that this already works fine with current TeeChart version.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply