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 - Axes Grids not painting on Chart Walls
Summary: Axes Grids not painting on Chart Walls
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: .NET 5.0 (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL: https://steema.com/support/viewtopic....
Keywords:
Depends on:
Blocks:
 
Reported: 2023-03-20 12:42 EDT by christopher ireland
Modified: 2023-03-20 12:47 EDT (History)
0 users

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


Attachments
Screenshot (129.69 KB, image/png)
2023-03-20 12:42 EDT, christopher ireland
Details

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