I have an old program that still gets used occasionally with version 6 AX.
Someone asked me to change the pen width on the lower Bollinger band. I remember having some trouble with the lower bb. Pr4obably why I didn't do it before.
Anyhow I cant seem to figure it out. My prog referred to this path but I cant seem to get it to work.
FunctionType.asBollinger.LowBand......
I can get the line width to change for the upper band but not the lower band.
I suppose I should upgrade to V8 but this is a 1 time thing,
Thanks,
David
Question for old program using V6 Tchart and ActiveX
Hi David,
I've tried the following example in TeeChart ActiveX v6.0.0.6 and it seems to work as expected. Could you see if it works for you?
I've tried the following example in TeeChart ActiveX v6.0.0.6 and it seems to work as expected. Could you see if it works for you?
Code: Select all
Private Sub Form_Load()
TChart1.Aspect.View3D = False
TChart1.AddSeries scPoint
TChart1.Series(0).FillSampleValues 25
TChart1.AddSeries scLine
With TChart1.Series(1)
.SetFunction tfBollinger
.DataSource = TChart1.Series(0)
.FunctionType.asBollinger.LowBand.Pen.Width = 2
End With
End Sub
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |