TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
-
bairog
- Advanced
- Posts: 128
- Joined: Fri Dec 07, 2018 12:00 am
Post
by bairog » Mon Mar 20, 2023 12:25 pm
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);
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)?
-
Christopher
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Post
by Christopher » Mon Mar 20, 2023 4:47 pm
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.
-
bairog
- Advanced
- Posts: 128
- Joined: Fri Dec 07, 2018 12:00 am
Post
by bairog » Tue Mar 21, 2023 5:04 am
Here is another bug for you. Whenever I make left or depth axis visible, save and close the designer - the axis disappears:
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;
-
Christopher
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Post
by Christopher » Wed Mar 22, 2023 11:04 am
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.