Using Delphi XE with TeeChart Pro 2011 on Windows 7.
I have a chart which shows the height differences of a disc (in nano-meters).
In total there are 100 rectangular fields each with about 1000 data points, almost evenly distributed on the disc. The field at the edges are only partially filled as there is no data outside the disc. IrregularGrid := True;
is required to see the data properly.
Ideally, I'd use a TColorGridseries
, as that would provide exactly the (2d)view I want to achieve. Unfortunately the distribution of the data is such that the TColorGridseries
simply does not function properly (Known TChart bug).
I turned to the TSurfaceSeries
, which can handle the data properly. The main disadvantage is that the 3d aspect puts the Z values on the left axis and the Y values on the depth axis. This results in a side view of the disc. To compensate I can rotate the 3d chart so I get a top view again, however the depth axis is drawn such that I get a chart rectangle with a 1:10 ratio.
My question in the end is simple: Is there a way to set the (pixel)length of the depth axis to the same (pixel)length as the horizontal axis, so that I get a 1:1 ratio for the top view of a 3d chart?
Regards, deColaman