hi
I cannot seem to make the gridband tool work (asp export to png with AXv7). The code I use is:
gridband=Chart.Tools.Add(tcGridBand)
With Chart.Tools.Items(gridband).asGridband
.Axis = Chart.Axis.Left
.Band1 = RGB(33,33,33)
.Band2 = RGB(233,233,233)
End With
The error I get is :
Object doesn't support this property or method: 'Band1'
Could you help?
Thanx
Alex
gridband tool
-
- Advanced
- Posts: 103
- Joined: Tue Mar 02, 2004 5:00 am
- Location: Bad Wurzach
- Contact:
Hi,
I think you forgot the Color property :
I think you forgot the Color property :
Code: Select all
With Chart.Tools.Items(gridband).asGridBand
.Axis = Chart.Axis.Left
.Band1.Color = RGB(33, 33, 33)
.Band2.Color = RGB(233, 233, 233)
End With
Pep Jorge
http://support.steema.com
http://support.steema.com
-
- Advanced
- Posts: 103
- Joined: Tue Mar 02, 2004 5:00 am
- Location: Bad Wurzach
- Contact:
Hi Alex,
We're improving the Help files every releases, hope this helps to all the customers.P.S. You really have to rewrite your documentation It will save you alot of posts in this forum
Pep Jorge
http://support.steema.com
http://support.steema.com