Search found 3 matches

by sring
Thu Oct 20, 2011 6:37 pm
Forum: .NET
Topic: plotting cyclic data
Replies: 4
Views: 3892

Re: plotting cyclic data

This worked. I was using a series and not a line. I had to use something like line1.Add(1, 1, Color.Transparent) since just using Add added points with odd x values, and I can't set the axis limits based on one line. And, I had to add an extra add at the end to prevent and unexpected last line. But,...
by sring
Tue Oct 18, 2011 3:04 pm
Forum: .NET
Topic: plotting cyclic data
Replies: 4
Views: 3892

Re: plotting cyclic data

I actually want all the points, it's just that occasionally I don't want some of the points connected. 0,0 1,1 0,0.2 1,0.8 If these are the 4 x,y points that I have, I don't want a line between points 2&3, but I want all the points. Is there a way to do this? I haven't tried SetNull yet, but if I ma...
by sring
Mon Oct 17, 2011 6:37 pm
Forum: .NET
Topic: plotting cyclic data
Replies: 4
Views: 3892

plotting cyclic data

I'd like to be able to plot cyclic data on a regular xy plot, but I need to eliminate the line segment that goes from the end of the cycle back to the beginning. Basically, it will end up looking like multiple series, but only be one series so that users can modify the entire set of cycles as an ent...