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.
ActiveX, Polar Series Shadow Visibility Control
ActiveX, Polar Series Shadow Visibility Control
- Attachments
-
- TeeChart Polar Series Shadow Visibility
- TeeChartPolarShadow.JPG (107.07 KiB) Viewed 5732 times
Re: ActiveX, Polar Series Shadow Visibility Control
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:
Could you please check if you are using the latest TeeChart AX available (8.0.0.6)?
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
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: ActiveX, Polar Series Shadow Visibility Control
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.
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.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: ActiveX, Polar Series Shadow Visibility Control
Hi Sunil,
Yes, this seems to be missing. I've added the issue (TA05014357) to the defect list to be fixed for next releases.
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 |
Instructions - How to post in this forum |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: ActiveX, Polar Series Shadow Visibility Control
Hi Sunil,
As an update, we found that this already works fine with current TeeChart version.
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 |
Instructions - How to post in this forum |