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 - Legend text ignores NewLine, cannot 'wrap' text.
Summary: Legend text ignores NewLine, cannot 'wrap' text.
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Legend (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-03-03 06:25 EST by christopher ireland
Modified: 2018-07-16 04:36 EDT (History)
0 users

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


Attachments
screenshot (17.34 KB, image/png)
2017-03-03 06:25 EST, christopher ireland
Details

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