Ejemplo n.º 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;
            }
        }
Ejemplo n.º 2
0
 public GraphFrame(ModuleCache cache)
 {
     m_cache         = cache;
     m_plotArea      = new GraphPlotArea(m_cache, m_gx, m_gy);
     m_gx.OnNewHour += m_gx_OnNewHour;
 }