Page 1 of 1

TeeChart V3 errors

Posted: Fri May 16, 2008 10:17 am
by 9644633
: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 ;

Posted: Fri May 16, 2008 10:36 am
by narcis
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;
		}

Posted: Fri May 16, 2008 12:29 pm
by 9644633
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... !

Posted: Fri May 16, 2008 1:40 pm
by narcis
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.

Posted: Fri May 16, 2008 3:14 pm
by narcis
Hi dc@teechartV2,

BTW: We have also fixed TF02013051 for that release.

zooming and not zooming

Posted: Fri May 16, 2008 3:21 pm
by 13048857
do we all have access to that release, where? I dont think I can live with that message :(

Posted: Fri May 16, 2008 3:29 pm
by narcis
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.

Posted: Mon May 19, 2008 6:58 am
by 9644633
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 ... ?

Posted: Mon May 19, 2008 2:18 pm
by narcis
Hello,

We have just posted the release at the client area as announced here.