Hi,
I had problems adding data points for error bars using tchart1.series(1).asErrorBar.AddErrorBar(xvalue,yvalue, error,string,color). it returns a <ComException> unhandled which I cannot comprehend "Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))".
Adding data using asErrorBar.AddErrorBar method
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Dylan Ho,
Have you tried using:
instead? If this works is because Add methods with parenthesis return an integer which expects to be assigned to a variable.
Have you tried using:
Code: Select all
tchart1.series(1).asErrorBar.AddErrorBar xvalue,yvalue, error,string,color
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 |