Contour map axes
Contour map axes
Is it possible to draw a contour map with axes set at an angle and of different lengths?
Re: Contour map axes
Hello turweston,
I'm not sure to understand what are you exactly trying to do. Could you please show us a picture about it?
I'm not sure to understand what are you exactly trying to do. Could you please show us a picture about it?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Contour map axes
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.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Contour map axes
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:
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;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |