I designed a real time graph application using zedGraph class RollingPointPairList()
. User should be able to hide specific curve when checkBox
is checked and show it when unchecked.
The problem is that it never shows a curve again once it had been hidden. Actually, it should show curve with all points which were hide, but it draws straight line & drops specific points from list. How to do it correctly?
This is a sample code I'm using:
if (chkXScale.Checked == true) {
zedGraphControl1.GraphPane.CurveList[0].Clear();
zedGraphControl1.Refresh();
}