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
Circular display is compressed
Re: Circular display is compressed
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:
Regards,
Marc Meumann
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();
Marc Meumann
Steema Support
Re: Circular display is compressed
Thank you, it works with this property.
Tilo
Tilo