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 - Marks in TContourSeries drawn at incorrect positions when 3D
Summary: Marks in TContourSeries drawn at incorrect positions when 3D
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: 20.170306
Hardware: PC Windows
: --- enhancement
Target Milestone: v2017.20
Assignee: yeray alonso
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2016-11-07 07:17 EST by yeray alonso
Modified: 2017-03-17 05:19 EDT (History)
0 users

See Also:
Chart Series: Contour
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.