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 555

Summary: [TF02016660] Grid lines of Right axes doesn't draw correctly in 3D charts, because...
Product: .NET TeeChart Reporter: sandra pazos <sandra>
Component: AxesAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal CC: nagai, sandra
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: RightGridInvisible

Description sandra pazos 2014-01-30 04:28:11 EST
Grid lines of Right axis doesn't draw correctly in 3D charts, because only are painted in the back wall and never in right wall of chart.  I understand that the right axis grid lines  must behave the same way as left axis grid lines and in this moment it doesn't occur.
See next code to reproduce the problem:
  private void InitializeChart()
    {
      tChart1.Dock = DockStyle.Fill;
      //adds 3D Vector
      Steema.TeeChart.Styles.Vector3D Vector3D = new Steema.TeeChart.Styles.Vector3D(tChart1.Chart);
      //adds random points
      Vector3D.FillSampleValues(30);
      //sets right axis to 3D vector
      Vector3D.VertAxis = Steema.TeeChart.Styles.VerticalAxis.Right;
      tChart1.Walls.Left.Visible = false;
      //shows right wall
     tChart1.Walls.Right.Visible = true;
     tChart1.Axes.Right.ZPosition = 0;
     tChart1.Aspect.Orthogonal = false;
     tChart1.Aspect.Rotation = 36;
      Vector3D.VertAxis = VerticalAxis.Both;
      tChart1.Axes.Right.Grid.Visible = true;
      //sets the grid line color of right axis to green
      tChart1.Axes.Right.Grid.Color = Color.Green;
    } [created:2013-07-24T13:14:04.000+01:00 reported by:sandra@steema.com reported in version:]
Comment 1 Shinobu Nagai 2014-02-20 19:58:53 EST
This inquiry was first reported by a user in last July. He wants to know when the fix will be applied. Please include it to the next maintenance release if possible.
Comment 2 sandra pazos 2014-02-21 08:06:41 EST
The same problem occurs in TeeChartVCL version http://bugs.teechart.net/show_bug.cgi?id=594
Comment 3 sandra pazos 2014-02-21 08:10:16 EST
Hello Nagai,

I would inform you the defect exists in the VCL version as you can check in the bug link I have added in previous comment. On the other hand, unfortunately the fix will not be available for the next maintenance release.

Thanks in advances,
Comment 4 Shinobu Nagai 2014-05-27 00:48:23 EDT
Created attachment 210 [details]
RightGridInvisible
Comment 5 christopher ireland 2014-05-27 09:20:32 EDT
This is now fixed.
Comment 6 Shinobu Nagai 2014-08-24 20:47:39 EDT
I checked it with v4.1.2014.05090 and v4.1.2014.08120, but right axis grid lines aren't still drawn correctly in 3D charts.