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
"Mark Tips" issue in TeeChart2011
Re: "Mark Tips" issue in TeeChart2011
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,
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 |
Instructions - How to post in this forum |
Re: "Mark Tips" issue in TeeChart2011
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
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
Re: "Mark Tips" issue in TeeChart2011
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? Thanks,
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? Thanks,
Best Regards,
Sandra Pazos / 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: "Mark Tips" issue in TeeChart2011
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
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 graph image
- Line.png (47.74 KiB) Viewed 13617 times
Re: "Mark Tips" issue in TeeChart2011
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:
Can you tell us if previous code works as you want?
Thanks,
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);
}
Thanks,
Best Regards,
Sandra Pazos / 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: "Mark Tips" issue in TeeChart2011
Hi Sandra,
We tried the workaround but did not get any remarkable improvement. Would you please suggest any other workaround ?
Thanks,
Raj
We tried the workaround but did not get any remarkable improvement. Would you please suggest any other workaround ?
Thanks,
Raj
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: "Mark Tips" issue in TeeChart2011
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.
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 837 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 |
Instructions - How to post in this forum |