hi,
I'd like to set/change color band in Fast Line Serie. How can i do that ? Where is this property in the Teechart editor ?
In my sample it is not a Fast Line serie but I would like do the same in a Fast Line serie
Thanks a lot for your help
Guilz
Changing band color
Re: Changing band color
Hi Gulitz,
I think you meant GridBand instead of ColorBand. This is how you could use GridBand at runtime:
Through the editor, you should find it in "Tools\Grid Band\Band 1" there is a color shape, clicking on it, it shows the color picker.
I think you meant GridBand instead of ColorBand. This is how you could use GridBand at runtime:
Code: Select all
Private Sub Form_Load()
TeeCommander1.ChartLink = TChart1.ChartLink
TChart1.Aspect.View3D = False
TChart1.AddSeries scFastLine
TChart1.Series(0).FillSampleValues
TChart1.Tools.Add tcGridBand
TChart1.Tools.Items(0).asGridBand.Axis = TChart1.Axis.Left
TChart1.Tools.Items(0).asGridBand.Band1.Color = vbRed
TChart1.Tools.Items(0).asGridBand.Band2.Color = vbYellow
End Sub
Best Regards,
![]() | Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) |
![]() ![]() ![]() ![]() ![]() ![]() |
Please read our Bug Fixing Policy |
Re: Changing band color
Thanks Yeray, it is exactly what I was looking for
Guilz

Guilz