![]() | Steema Issues DatabaseNote: 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. |
| Summary: | [TF02016484] Deppending on the Chart's width, the daMinMax DrawAllPointsStyle give... | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | yeray alonso <yeray> |
| Component: | Series | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | enhancement | ||
| Priority: | Normal | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
This ticket resolved and fixed 20/02/2013. Imported for relationship with http://bugs.teechart.net/show_bug.cgi?id=635 |
Deppending on the Chart's width, the daMinMax DrawAllPointsStyle gives a strange result. See the following example and resize the form to see how some "stairs" are drawn for the second series, while one would think it should be similar to the first series. this.Width = 820; tChart1.Aspect.View3D = false; tChart1.Legend.Visible = false; tChart1.Panel.MarginLeft = 7; tChart1.Panning.Allow = ScrollModes.Horizontal; tChart1.Dock = DockStyle.Fill; Axis cust1 = new Axis(tChart1.Chart); Axis cust2 = new Axis(tChart1.Chart); tChart1.Axes.Custom.Add(cust1); tChart1.Axes.Custom.Add(cust2); cust1.EndPosition = 48; cust2.StartPosition = 52; FastLine fast1 = new FastLine(tChart1.Chart); FastLine fast2 = new FastLine(tChart1.Chart); for (int i = 0; i < 1440; i++) { fast1.Add(100 * (i % 2)); fast2.Add(100 * (i % 2)); } fast1.CustomVertAxis = cust1; fast2.CustomVertAxis = cust2; fast2.DrawAllPoints = false; fast2.DrawAllPointsStyle = DrawAllPointsStyle.MinMax; Inform the customer when this will be fixed: jeremy@imtc.gatech.edu (Jeremy Johnson) He is waiting for this to purchase the component. So he will want an evaluation dll to check this works as he wants... Similar result in VCL: TV52016483 [created:2013-01-11T13:35:56.000+01:00 reported by:yeray@steema.com reported in version:Build 4.1.2012.07130 (TeeChart for .NET)]