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 - Series are drawing out of the ChartRect bounds, when you do zoom if the chart is rotated
Summary: Series are drawing out of the ChartRect bounds, when you do zoom if the chart...
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Canvas (show other bugs)
Version: TeeChart for .Net 4.1.2017.10196
Hardware: PC Windows
: High major
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://teechart.net/directline/viewto...
Keywords:
Depends on:
Blocks:
 
Reported: 2018-02-23 06:34 EST by sandra pazos
Modified: 2018-04-09 06:27 EDT (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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;
}