Circular display is compressed

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Tilo
Newbie
Newbie
Posts: 2
Joined: Fri Jan 30, 2015 12:00 am

Circular display is compressed

Post by Tilo » Fri Aug 21, 2015 9:47 am

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

Marc
Site Admin
Site Admin
Posts: 1258
Joined: Thu Oct 16, 2003 4:00 am
Location: Girona
Contact:

Re: Circular display is compressed

Post by Marc » Fri Aug 21, 2015 11:35 am

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
Steema Support

Tilo
Newbie
Newbie
Posts: 2
Joined: Fri Jan 30, 2015 12:00 am

Re: Circular display is compressed

Post by Tilo » Fri Aug 21, 2015 1:48 pm

Thank you, it works with this property.

Tilo

Post Reply