I am using vs 2008 and Teechart7 activex. I am getting following error in my project
Cannot implicitly convert type 'AxTeeChart.AxTChart' to 'TeeChart.TChart'. An explicit conversion exists (are you missing a cast?)
code which giving this error-
axTeePreviewPanel1.AddChart(PrintCharts);
PreviewPanel issue
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: PreviewPanel issue
Hi amit,
Try using ChartLink, for example:
Try using ChartLink, for example:
Code: Select all
axTeePreviewPanel1.ChartLink = axTChart1.ChartLink;
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 |
Re: PreviewPanel issue
thanx
...It's worked for me..
