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 2562 - IsoSurface WireFrame regression
Summary: IsoSurface WireFrame regression
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- regression
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-10-20 05:49 EDT by christopher ireland
Modified: 2022-10-21 10:48 EDT (History)
0 users

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


Attachments
version 4.0.2009.62332 (261.21 KB, image/png)
2022-10-20 05:49 EDT, christopher ireland
Details
version 4.2022.10.11 (deleted)
2022-10-20 05:50 EDT, christopher ireland
Details
version 4.2022.10.11 (198.76 KB, image/png)
2022-10-20 06:07 EDT, christopher ireland
Details

Note You need to log in before you can comment on or make changes to this bug.
Description christopher ireland 2022-10-20 05:49:30 EDT
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}";
    }
Comment 1 christopher ireland 2022-10-20 05:50:10 EDT
Created attachment 1015 [details]
version 4.2022.10.11
Comment 2 christopher ireland 2022-10-20 06:06:34 EDT
The content of attachment 1015 [details] has been deleted
Comment 3 christopher ireland 2022-10-20 06:07:01 EDT
Created attachment 1016 [details]
version 4.2022.10.11