Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 1998

Summary: Series are drawing out of the ChartRect bounds, when you do zoom if the chart is rotated
Product: .NET TeeChart Reporter: sandra pazos <sandra>
Component: CanvasAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: major CC: chris
Priority: High    
Version: TeeChart for .Net 4.1.2017.10196   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://teechart.net/directline/viewtopic.php?f=6&t=1245
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description sandra pazos 2018-02-23 06:34:07 EST
if you rotate and zoom the chart, the  series will jump out of the ChartRect bounds. The problem doesn’t appear in VCL. The code below shows you how can reproduce it: 
	Steema.TeeChart.Styles.Line line1;
	 
		private void InitializeChart()
		{
			//surfaceSeries1 = new Steema.TeeChart.Styles.Surface(tChart1.Chart);
			line1 = new Steema.TeeChart.Styles.Line(tChart1.Chart);
			line1.FillSampleValues();
			tChart1.Aspect.View3D = true;
			tChart1.Aspect.ClipPoints = true;
			tChart1.Aspect.Orthogonal = false;
			tChart1.Aspect.Rotation = 37;
}