"Mark Tips" issue in TeeChart2011

TeeChart for ActiveX, COM and ASP
Post Reply
BillPa
Newbie
Newbie
Posts: 6
Joined: Wed Jun 06, 2012 12:00 am

"Mark Tips" issue in TeeChart2011

Post by BillPa » Tue Jun 19, 2012 11:06 am

Hi,

We have upgraded the chart utility from v2006 to v2011 (Activex) for our MFC application. We have multiple series to show in the chart.
In v2011, one thing we have noticed that "Mark Tips" is not working properly. Sometimes it displays data but most of the times it shows nothing. In the previous version (v2006) it is really good. We use default settings (mouse action = move, delay = 500, hide delay = 1000).

Should we do anything in the coding or it is an issue? We need help urgently.

Thanks,
Raj

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: "Mark Tips" issue in TeeChart2011

Post by Sandra » Wed Jun 20, 2012 11:57 am

Hello Raj,

Can you please send us a simple project, so we can reproduce your problem here and we try to find a solution?

Thanks,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

BillPa
Newbie
Newbie
Posts: 6
Joined: Wed Jun 06, 2012 12:00 am

Re: "Mark Tips" issue in TeeChart2011

Post by BillPa » Fri Jun 29, 2012 4:59 am

Hi Sandra,

Our project is very big and we can not send it to you. Is it not possible to investigate by your own setup?
We need it urgently.


Thanks,
Raj

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: "Mark Tips" issue in TeeChart2011

Post by Sandra » Tue Jul 03, 2012 9:34 am

Hello Raj,

I have made a simple project MFC with last version of TeeChartActivex and MarkTips Tool works fine for me. Can you please check my attached project if is works in your end? On the other hand, can you tell us which version of ActiveX are you using?
Test.zip
(51.1 KiB) Downloaded 825 times
Thanks,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

BillPa
Newbie
Newbie
Posts: 6
Joined: Wed Jun 06, 2012 12:00 am

Re: "Mark Tips" issue in TeeChart2011

Post by BillPa » Mon Jul 09, 2012 8:12 am

Hi Sandra,

We do not use bar graph, we use line graph. Please see the attached image to get idea about our graph style.

Have you tried with line graph? Please try that, you may understand our problem.

I would like to mention again that our graphing works very fine with v2006 but with the recent version (v2012) it is not good at all.


Thanks,
Raj
Attachments
Line.png
Line graph image
Line.png (47.74 KiB) Viewed 13449 times

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: "Mark Tips" issue in TeeChart2011

Post by Sandra » Tue Jul 10, 2012 10:54 am

Hello BillPa,

You are right. I have added your problem in the bug list report with number[TV52016249]. We will try to fix it to upcoming maintenace releases of TeeChartActivex. At the moment, you can set the transparency of pointer to 100 as a workaround as do in next lines of code:

Code: Select all

	
...
//Chart
	m_Chart1.GetAspect().SetView3D(0);
	m_ChartControler1.SetChartLink(m_Chart1.GetChartLink());
	m_Chart1.AddSeries(0);
	m_Chart1.AddSeries(0);
	m_Chart1.AddSeries(0);
	m_Chart1.AddSeries(0);
	
 //   m_Chart1.GetTools().GetItems(0).GetAsMarksTip().GetSeries().b
	for(int i=0; i<4; i++)
	{
		m_Chart1.Series(i).FillSampleValues(10);
		m_Chart1.Series(i).GetAsLine().GetLinePen().SetWidth(3);
		m_Chart1.Series(i).GetAsLine().GetPointer().SetVisible(true);
		m_Chart1.Series(i).GetAsLine().GetPointer().SetTransparency(100);
	}
Can you tell us if previous code works as you want?

Thanks,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

BillPa
Newbie
Newbie
Posts: 6
Joined: Wed Jun 06, 2012 12:00 am

Re: "Mark Tips" issue in TeeChart2011

Post by BillPa » Mon Jul 16, 2012 8:43 am

Hi Sandra,

We tried the workaround but did not get any remarkable improvement. Would you please suggest any other workaround ?


Thanks,
Raj

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: "Mark Tips" issue in TeeChart2011

Post by Narcís » Mon Jul 16, 2012 12:12 pm

Hi Raj,

This works fine for me here using attached project with latest 2012.0.0.8 release published last week. Sometimes it seems just a problem of targeting the series to click correctly. Can you please download it, test my project and let us know if it works fine at your end? If necessary please feel free to modify it so that we can reproduce the issue here in a consistent manner.

Thanks in advance.
Attachments
Test.zip
(566.36 KiB) Downloaded 820 times
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply