Hi!
That could be a solution, but I couldn't get it to work properly.
It make some nasty lines from the end to the start.
for (int i = 0; i < x; i++)
{
if (i < x - 1)
{
if (x == 200)
ClearFirstAreaOfArrayList();
e.Graphics.TranslateTransform(48.0f, 80.0f);
e.Graphics.DrawLine(GraphPen,(Point)arl[i + 1], (Point)arl );
e.Graphics.ResetTransform();
}
}
And in the ClearFirstAreaOfArrayList iam removing the first 50th points and make my x - 50
Hope you could help me
|