public GraphPlotArea(ModuleCache cache, GraphAxis gx, GraphAxis gy) { m_cache = cache; m_gx = gx; m_gy = gy; m_fontNote = new Font("Century Gothic", 8.0f); }
public SimpleGraphingControl() { InitializeComponent(); m_cache = new ModuleCache(); m_surface = new GraphSurface(m_cache); m_output = m_surface.BuildGraph(m_config, null); }
public GraphSurface(ModuleCache cache) { m_cache = cache; }
public GraphFrame(ModuleCache cache) { m_cache = cache; m_plotArea = new GraphPlotArea(m_cache, m_gx, m_gy); m_gx.OnNewHour += m_gx_OnNewHour; }
public GraphPlot(ModuleCache cache, GraphAxis gx, GraphAxis gy) { m_cache = cache; m_gx = gx; m_gy = gy; }