Hello,
there seems to be a problem with the (X) position of points in the graphics.
Or I am overlooking something. The series values that are plotted are all on the same X value:
But in the graphics the points are at different X values:
To reproduce this please load the chart from the attached tee file.
best regards,
X-Ray
X values of points are incorrectly drawn
X values of points are incorrectly drawn
- Attachments
-
- TestSeriesXValueBug.zip
- ZIP file containing the .tee file to reproduce the issue
- (1.16 KiB) Downloaded 521 times
Re: X values of points are incorrectly drawn
Hello,
After loading your tee file I see the first 2 series are assigned to the top axis while the third series is assigned to the bottom axis. By default, each axis automatically scales to fit the points in the series assigned to it; but they also add some offset internally to avoid overlapping when possible.
In your case, if you are not going to show the top axis, you can assign all the series to the bottom axis:
After loading your tee file I see the first 2 series are assigned to the top axis while the third series is assigned to the bottom axis. By default, each axis automatically scales to fit the points in the series assigned to it; but they also add some offset internally to avoid overlapping when possible.
In your case, if you are not going to show the top axis, you can assign all the series to the bottom axis:
Code: Select all
Chart1[0].HorizAxis:=aBottomAxis;
Chart1[1].HorizAxis:=aBottomAxis;
Chart1.Axes.Bottom.LabelStyle:=talValue;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: X values of points are incorrectly drawn
Hello Yeray,
Thank you very much for clearing the confusion !
I assigned the other series to the invisible top axis to not show the markers on the bottom axes, but rather the values.
The call:
Chart1.Axes.Bottom.LabelStyle:=talValue;
is of course the right measure to achieve this.
best regards,
X-ray
Thank you very much for clearing the confusion !
I assigned the other series to the invisible top axis to not show the markers on the bottom axes, but rather the values.
The call:
Chart1.Axes.Bottom.LabelStyle:=talValue;
is of course the right measure to achieve this.
best regards,
X-ray