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 1811

Summary: Legend text ignores NewLine, cannot 'wrap' text.
Product: .NET TeeChart Reporter: christopher ireland <chris>
Component: LegendAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal    
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: screenshot

Description christopher ireland 2017-03-03 06:25:53 EST
Created attachment 732 [details]
screenshot

This is the .NET analogue of http://bugs.teechart.net/show_bug.cgi?id=1810

		private void InitializeChart()
		{
			Line series = new Line(tChart1.Chart);

			string s1 = "One part of the label which is relatively long" + Utils.NewLine + "the other part of the label which is also relatively long";

			series.Add(3, s1);
			series.Add(4, s1);

			tChart1.Axes.Bottom.Labels.Angle = 90;
		}


see screenshot.