Beispiel #1
0
        public void Dispose()
        {
            if (m_plotArea != null)
            {
                m_plotArea.Dispose();
                m_plotArea = null;
            }

            if (m_gx != null)
            {
                m_gx.Dispose();
                m_gx = null;
            }

            if (m_gy != null)
            {
                m_gy.Dispose();
                m_gy = null;
            }
        }
 public void SetAxes(GraphAxisX xAxis, GraphAxisY yAxis)
 {
     m_xAxis = xAxis;
     m_yAxis = yAxis;
     m_yAxis.CustomFlagsPost.Add(m_yAxisFlag);
 }