How to set visible horizontal grid lines on the left wall
Posted: 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):
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)?
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)?