Page 1 of 1

How to set visible horizontal grid lines on the left wall

Posted: Mon Mar 20, 2023 12:25 pm
by 15685014
Hello.
I have a simple 3D chart (latest teeChart Pro 2023.3.13 on .NET 7.0 WinForms) with points3D series (for all axes grid lines are enabled):

Code: Select all

InitializeComponent();
for (int i = 0; i < tChart1.Axes.Count; i++)
{
       tChart1.Axes[i].Grid.Visible = true;
}
points3d1.FillSampleValues(10);
Image
Back wall looks fine (both vertical and horizontal grid lines are present). But on the left wall only vertical grid lines are present, the bottom wall also has only one type of grid lines. How to have the both (like back wall has)?

Re: How to set visible horizontal grid lines on the left wall

Posted: Mon Mar 20, 2023 4:47 pm
by Christopher
Hello,

thank you for reporting this issue to us; we can confirm that it is a defect, and we have added it to our issue tracker with id=2595. Running TeeChart for .NET Framework 4.0 instead of TeeChart for .NET 6.0 in Windows Forms produces a Chart with the expected Grid lines, which has enabled us to fix this issue rapidly. This fix will be available in our next TeeChart NuGet build.

Re: How to set visible horizontal grid lines on the left wall

Posted: Tue Mar 21, 2023 5:04 am
by 15685014
Here is another bug for you. Whenever I make left or depth axis visible, save and close the designer - the axis disappears:
Image
I am forced to make it explicitly in code (this applies to 2D graphs as well):

Code: Select all

InitializeComponent();
            
tChart1.Axes.Left.AxisPen.Visible = true;
tChart1.Axes.Depth.AxisPen.Visible = true;

Re: How to set visible horizontal grid lines on the left wall

Posted: Wed Mar 22, 2023 11:04 am
by Christopher
Hello,

again, thank you for reporting this issue to us; we can confirm that it is a defect, and we have added it to our issue tracker with id=2598. Running TeeChart for .NET Framework 4.0 instead of TeeChart for .NET 6.0 in Windows Forms produces a Chart with the expected AxisPen changes correctly serialized, which will enabled us to fix this issue in the near future. We hope this fix will be available in our next TeeChart NuGet build.