TeeChart V3 errors
-
- Newbie
- Posts: 3
- Joined: Thu Mar 22, 2007 12:00 am
TeeChart V3 errors
Visual Studio 2008
Steema TeeChart Pro V3 3.5.3056.18835
Asp.Net(C#.Net) / C#.Net
Try to use it ...
1. WebChart
Problems
- try to zoom the chart -> MS IE 7 -> Show the MessageBox ( alert ) with the text "zooming"
- all works with V2
I am find in the Java-Script this peace of code ?????? ( alert("zooming"); )
if(window.event){
evt.cancelBubble = true;
if (action == ActionType.Zooming)
{
alert("zooming");
evt.returnValue = true; //continue event proc ie
}
else
{
alert("not zooming");
evt.returnValue = false; //need to block to permit dragscroll in IE
}
}else{
evt = (evt) ? evt : event;
evt.stopPropagation();
evt.preventDefault();
}
2. tChart
Problems
- Changing the color of the pointer in an area-Chart do not work, no effect
- all works with V2
((Steema.TeeChart.Styles.Area)tChart1.Series[0]).Pointer.Brush.Color = Color.Blue ;
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi dc@teechartV2,
Please find below the answers to your questions:
1. I'm not sure about what do you exactly mean. Could you please send us a simple example project we can run "as-is" to reproduce the problem here?
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Thanks in advance.
2. I could reproduce this issue here and added it (TF02013051) to the bug list to be fixed for next releases. In the meantime you can use GetPointerStyle event to set pointer color, for example:
Please find below the answers to your questions:
1. I'm not sure about what do you exactly mean. Could you please send us a simple example project we can run "as-is" to reproduce the problem here?
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Thanks in advance.
2. I could reproduce this issue here and added it (TF02013051) to the bug list to be fixed for next releases. In the meantime you can use GetPointerStyle event to set pointer color, for example:
Code: Select all
private void InitializeChart()
{
Steema.TeeChart.Styles.Area area1 = new Steema.TeeChart.Styles.Area(tChart1.Chart);
area1.Color = Color.Red;
area1.FillSampleValues();
area1.Pointer.Visible = true;
area1.Pointer.Color = Color.Blue;
area1.GetPointerStyle += new Steema.TeeChart.Styles.CustomPoint.GetPointerStyleEventHandler(area1_GetPointerStyle);
}
void area1_GetPointerStyle(Steema.TeeChart.Styles.CustomPoint series, Steema.TeeChart.Styles.GetPointerStyleEventArgs e)
{
e.Color = Color.Blue;
}
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 |
-
- Newbie
- Posts: 3
- Joined: Thu Mar 22, 2007 12:00 am
Hi Narcís Calvet,
you get the code ....
I use
Visual Studio 2008
Steema TeeChart Pro V3 3.5.3056.18835
Asp.Net(C#.Net) / C#.Net
In the WebChart if i use scrolling and or zooming,
i get always the messagebox "zooming" or the messagebox "not zooming".
when the mousepointer reaches the chart the Messagebox comes... !
you get the code ....
I use
Visual Studio 2008
Steema TeeChart Pro V3 3.5.3056.18835
Asp.Net(C#.Net) / C#.Net
In the WebChart if i use scrolling and or zooming,
i get always the messagebox "zooming" or the messagebox "not zooming".
when the mousepointer reaches the chart the Messagebox comes... !
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi dc@teechartV2,
Thanks for the information. I had misunderstood the issue. Now I could reproduce the issue here. This is debugging code that was left into the release. We are very sorry for that and will post a new release immediately fixing this issue.
Thanks for the information. I had misunderstood the issue. Now I could reproduce the issue here. This is debugging code that was left into the release. We are very sorry for that and will post a new release immediately fixing this issue.
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi dc@teechartV2,
BTW: We have also fixed TF02013051 for that release.
BTW: We have also fixed TF02013051 for that release.
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 |
zooming and not zooming
do we all have access to that release, where? I dont think I can live with that message
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi THoMaSiN,
Yes, the version is not ready yet. All being well it will be published on Monday and will be available to all TeeChart for .NET v3 registered customers.
Yes, the version is not ready yet. All being well it will be published on Monday and will be available to all TeeChart for .NET v3 registered customers.
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 |
-
- Newbie
- Posts: 3
- Joined: Thu Mar 22, 2007 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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 |