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 1676

Summary: Marks in TContourSeries drawn at incorrect positions when 3D
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: SeriesAssignee: yeray alonso <yeray>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: ---    
Version: 20.170306   
Target Milestone: v2017.20   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=1&t=16319
Chart Series: Contour Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2016-11-07 07:17:06 EST
Can be reproduced with the following simple example:

uses TeeSurfa;

procedure TForm1.FormCreate(Sender: TObject);
begin
  with Chart1.AddSeries(TContourSeries) as TContourSeries do
  begin
    FillSampleValues(10);
    Marks.Visible:=true;
  end;

  Chart1.Aspect.Orthogonal:=false;
  Chart1.Chart3DPercent:=100;
  Chart1.Aspect.Zoom:=80;
  Chart1.Legend.Visible:=false;
end;

If you rotate the chart (with a Commander or with a RotateTool) you can see the marks moving, but not at the correct positions.