Hi out there,
Scenario: I did create Custom1 to Custom5 axes and want to delete Custom3 and Custom 4 - programatically - h ow do I do that as I cannot use the Custom_axis id's as they change once the first custom axis (Custom3) is deleted. Any ideas?
Thanks,
hugh...
Delete multiple custom axis
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi hugh,
You can do it downwards, for example:
You can do it downwards, for example:
Code: Select all
Private Sub Command1_Click()
TChart1.Axis.RemoveCustom 3
TChart1.Axis.RemoveCustom 2
End Sub
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |