Hi very nice tool,
found a problem though that I could not solve.
When plotting a line and zooming in the graph the
line will dissapear as soon as of the points
defining the line is no longer inside the axes limits.
Understand that it is probably an optimisation not
to draw lines outside the view, but the line should
still be visible if it intersects the window....
/NPlot fan
Logged In: NO
Found the problem area myself after all...
Commented out the code
if ((dx1 < leftCutoff || rightCutoff < dx1) &&
(dx2 < leftCutoff || rightCutoff < dx2))
{
continue;
}
in "LinePlot.cs" and then no lines will dissapear when zooming in.