Page 1 of 1

Circular display is compressed

Posted: Fri Aug 21, 2015 9:47 am
by 15671386
Hi,

I use a Points chart for displaying a circle. Different coordinate it have different colors. Both axes have the same scale. Nevertheless, the circle will not be displayed around. He looks more like an ellipse.
What can I do so that the viewer recognizes the circle really round?

R. Tilo

Re: Circular display is compressed

Posted: Fri Aug 21, 2015 11:35 am
by Marc
Hello R. Tilo,

Is it that the axis length on one of the axes is greater? That being the case you might like to set it to isometric to bring the scale size to the same physical size as the other Axis.

You could set it for the howizontal or vertical Axis, try:

Code: Select all

tChart1[0].IsoHorizAxes = true;
//or tChart1[0].IsoVertAxes = true;
tChart1.Draw();
Regards,
Marc Meumann

Re: Circular display is compressed

Posted: Fri Aug 21, 2015 1:48 pm
by 15671386
Thank you, it works with this property.

Tilo