Hi!
I have a plot with a line and several point series.
Whe I zoom in the point and the line is not synched any more, even to pints series that should be in same location is in position correctly.
Or if I zoom even further.
The points marks are the same, but they are positioned in different locations, why?
Regards
Odne
Zooming with a line and points series get in unsync
Zooming with a line and points series get in unsync
- Attachments
-
- repositioning of points when zooming problem #2.PNG (28.05 KiB) Viewed 4847 times
-
- repositioning of points when zooming problem #1.PNG (16.62 KiB) Viewed 4839 times
Re: Zooming with a line and points series get in unsync
Forgot to mention that we are using version 4.1.2012.5103 TeeChart for WinForms.
Odne
Odne
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Zooming with a line and points series get in unsync
I'm using the latest publicly available version of TeeChart.NET for WinForms with this code:Odne wrote:Forgot to mention that we are using version 4.1.2012.5103 TeeChart for WinForms.
Code: Select all
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
Line line = new Line(tChart1.Chart);
Points points = new Points(tChart1.Chart);
Random rnd = new Random();
for (int i = 0; i < 10; i++)
{
double x = rnd.NextDouble();
double y = rnd.NextDouble();
line.Add(x, y);
points.Add(x, y);
}
}
Best Regards,
Christopher Ireland / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |