
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 ;