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 1204 - Printer preview moves custom objects
Summary: Printer preview moves custom objects
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Axes (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-05-07 12:14 EDT by christopher ireland
Modified: 2015-05-11 07:10 EDT (History)
0 users

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 christopher ireland 2015-05-07 12:14:16 EDT
Using this code:

		private void InitializeChart()
		{
			tChart1.Aspect.View3D = false;

			Points points1 = new Points(tChart1.Chart);
			points1.FillSampleValues();
			points1.VertAxis = VerticalAxis.Both;

			tChart1.Axes.Top.Title.Text = "Top Axis";
			tChart1.Axes.Bottom.Title.Text = "Bottom Axis";

		}

		private void button4_Click(object sender, EventArgs e)
		{
			tChart1.Axes.Top.Title.AutoPosition = false;
			tChart1.Axes.Top.Title.Top = 200;

			tChart1.Printer.Preview();
		}

and then changing from Portrait to Landscape in the Preview causes the Top Axis Title to move position.