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 2595

Summary: Axes Grids not painting on Chart Walls
Product: .NET TeeChart Reporter: christopher ireland <chris>
Component: .NET 5.0Assignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal    
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: https://steema.com/support/viewtopic.php?f=4&t=17868
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: Screenshot

Description christopher ireland 2023-03-20 12:42:25 EDT
Created attachment 1040 [details]
Screenshot

Using TeeChart for .NET 6.0 in Windows Forms, when we run code such as the following:

        private void InitializeChart()
        {
            tChart1.Aspect.View3D = true;
            tChart1.Aspect.Orthogonal = false;
            tChart1.Aspect.Chart3DPercent = 100;
            tChart1.Aspect.Zoom = 80;

            tChart1.Axes.Left.Grid.Visible = true;
            tChart1.Axes.Right.Grid.Visible = true;
            tChart1.Axes.Top.Grid.Visible = true;
            tChart1.Axes.Bottom.Grid.DrawEvery = 1;
            tChart1.Axes.Bottom.Grid.Visible = true;
            tChart1.Axes.Depth.Visible = true;

            tChart1.Tools.Add(typeof(Rotate));
            tChart1.Series.Add(typeof(Points3D)).FillSampleValues();
        }

We obtain the image given by our client here:
https://steema.com/support/viewtopic.php?f=4&t=17868

This works as expected in .NET Framework 4.0 Windows Forms.