示例#1
0
 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);
 }
示例#3
0
 public GraphSurface(ModuleCache cache)
 {
     m_cache = cache;
 }
示例#4
0
 public GraphFrame(ModuleCache cache)
 {
     m_cache         = cache;
     m_plotArea      = new GraphPlotArea(m_cache, m_gx, m_gy);
     m_gx.OnNewHour += m_gx_OnNewHour;
 }
示例#5
0
 public GraphPlot(ModuleCache cache, GraphAxis gx, GraphAxis gy)
 {
     m_cache = cache;
     m_gx    = gx;
     m_gy    = gy;
 }