From: SourceForge.net <no...@so...> - 2009-04-06 14:09:00
|
Bugs item #2737577, was opened at 2009-04-06 16:08 Message generated for change (Tracker Item Submitted) made by phatoni You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=2737577&group_id=161868 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: General Group: 0.9.10.0 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Sebastian Hiller (phatoni) Assigned to: Nobody/Anonymous (nobody) Summary: Clipping Error in Step Plots Initial Comment: The same clipping problem someone stated before applies also to StepPlots. If one point is on the left but outside the screen area and the other on the right but out side the screen area, the chart is not drawn. I would suggest to change the clipping algorithm in StepPlots.cs to something like: // do horizontal clipping here, to speed up if ((p1.X < leftCutoff && p2.X < leftCutoff && p3.X < leftCutoff) || (p1.X > rightCutoff && p2.X > rightCutoff && p3.X > rightCutoff )) { continue; } This works for me. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=821568&aid=2737577&group_id=161868 |