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
Gradient on Color Band or Series Region
Re: Gradient on Color Band or Series Region
Hi Raymond,
Can you reproduce it in a simple test application? The following forks fine for me here:
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,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Gradient on Color Band or Series Region
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.