Gradient on Color Band or Series Region

TeeChart for ActiveX, COM and ASP
Post Reply
Raymond
Newbie
Newbie
Posts: 27
Joined: Tue Dec 02, 2008 12:00 am

Gradient on Color Band or Series Region

Post by Raymond » Wed Oct 21, 2009 9:43 pm

Hi,

I am wondering if there is a problem with gradient on color band or series region. The gradient does not seem to have any effect after I set it.


Thanks,
Raymond

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

Re: Gradient on Color Band or Series Region

Post by Yeray » Thu Oct 22, 2009 11:18 am

Hi Raymond,

Can you reproduce it in a simple test application? The following forks fine for me here:

Code: Select all

Private Sub Form_Load()
  TChart1.Aspect.View3D = False

  TChart1.AddSeries scLine
  TChart1.Series(0).FillSampleValues 25
  
  TChart1.Tools.Add tcSeriesRegion
  TChart1.Tools.Items(0).asSeriesRegion.Series = TChart1.Series(0)
  TChart1.Tools.Items(0).asSeriesRegion.Gradient.Visible = True
End Sub
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

Raymond
Newbie
Newbie
Posts: 27
Joined: Tue Dec 02, 2008 12:00 am

Re: Gradient on Color Band or Series Region

Post by Raymond » Thu Oct 22, 2009 3:35 pm

It is probably my mistake. Apparently I also put gradient on the back wall. After I take out the gradient on the back wall, the color band or series region gradient works.

Post Reply