![]() | 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: | IsoSurface WireFrame regression | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | christopher ireland <chris> |
| Component: | Series | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | regression | ||
| Priority: | --- | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
| Attachments: |
version 4.0.2009.62332
version 4.2022.10.11 version 4.2022.10.11 |
||
Created attachment 1015 [details]
version 4.2022.10.11
The content of attachment 1015 [details] has been deleted
Created attachment 1016 [details]
version 4.2022.10.11
|
Created attachment 1014 [details] version 4.0.2009.62332 The following code renders differently between v.4.0.2009.62332 and v.4.2022.10.11 (see attachments) public Form1() { InitializeComponent(); InitializeChart(); } private void InitializeChart() { var iso = new IsoSurface(tChart1.Chart); iso.FillSampleValues(); tChart1.Aspect.View3D = true; tChart1.Aspect.Chart3DPercent = 100; tChart1.Aspect.Zoom = 60; tChart1.Aspect.Orthogonal = false; tChart1.Aspect.Rotation = 300; tChart1.Aspect.Elevation = 300; tChart1.Aspect.Perspective = 100; iso.PaletteSteps = 25; iso.PaletteStyle = Steema.TeeChart.Styles.PaletteStyles.Rainbow; iso.DotFrame = false; iso.WireFrame = true; tChart1.Tools.Add(typeof(Rotate)); var assembly = Assembly.GetAssembly(typeof(TChart)); var fvi = System.Diagnostics.FileVersionInfo.GetVersionInfo(assembly.Location); tChart1.Header.Text += $" version {fvi.FileVersion}"; }