Page 1 of 1

Contour map axes

Posted: Sat Sep 03, 2011 9:11 am
by 16459183
Is it possible to draw a contour map with axes set at an angle and of different lengths? :D

Re: Contour map axes

Posted: Mon Sep 05, 2011 8:40 am
by yeray
Hello turweston,

I'm not sure to understand what are you exactly trying to do. Could you please show us a picture about it?

Re: Contour map axes

Posted: Sun Sep 18, 2011 9:43 am
by 16459183
contour.jpg
non-orthogonal contour map
contour.jpg (271.36 KiB) Viewed 3267 times
Hello
Most contour maps are with respect to orthogonal axes, but sometimes one needs to plot them with non-orthogonal axes i.e. axes that are not perpendicular to each other.

Re: Contour map axes

Posted: Mon Sep 19, 2011 7:55 am
by narcis
Hi turweston,

You can set the chart to be non-orthogonal, set rotation and elevation as desired and also change walls, axes and grid visibility, for example:

Code: Select all

uses TeeSurfa;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1.AddSeries(TContourSeries.Create(Self)).FillSampleValues;

  Chart1.Aspect.Orthogonal:=False;
  Chart1.Aspect.Elevation:=290;
  Chart1.Aspect.Rotation:=350;
  Chart1.Chart3DPercent:=50;
end;