TeeChart V3 errors

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
dc@teechartV2
Newbie
Newbie
Posts: 3
Joined: Thu Mar 22, 2007 12:00 am

TeeChart V3 errors

Post by dc@teechartV2 » Fri May 16, 2008 10:17 am

:evil:
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 ;

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

Post by Narcís » Fri May 16, 2008 10:36 am

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:

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
Image Image Image Image Image Image
Instructions - How to post in this forum

dc@teechartV2
Newbie
Newbie
Posts: 3
Joined: Thu Mar 22, 2007 12:00 am

Post by dc@teechartV2 » Fri May 16, 2008 12:29 pm

Hi Narcís Calvet,

you get the code ....
:shock:

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... !

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

Post by Narcís » Fri May 16, 2008 1:40 pm

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.
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

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

Post by Narcís » Fri May 16, 2008 3:14 pm

Hi dc@teechartV2,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

THoMaSiN
Newbie
Newbie
Posts: 36
Joined: Mon Apr 14, 2008 12:00 am

zooming and not zooming

Post by THoMaSiN » Fri May 16, 2008 3:21 pm

do we all have access to that release, where? I dont think I can live with that message :(

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

Post by Narcís » Fri May 16, 2008 3:29 pm

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.
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

dc@teechartV2
Newbie
Newbie
Posts: 3
Joined: Thu Mar 22, 2007 12:00 am

Post by dc@teechartV2 » Mon May 19, 2008 6:58 am

Hi Narcís Calvet,

i think you have understand what i am knowing,
in the future Steema should have more than one release
to download for new customers ... or new Versions.
When i can get only the newest release, and it is defect ?
How can work with it ... ?

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

Post by Narcís » Mon May 19, 2008 2:18 pm

Hello,

We have just posted the release at the client area as announced here.
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