Ejemplo n.º 1
0
 public GraphEngine(string sWorkingDir, frmGraphSettings.Resolutions rResolution)
 {
     iGraph           = new Bitmap(1920, 1080);
     gItem            = new GraphItem[0];
     this.sWorkingDir = sWorkingDir;
     this.rResolution = rResolution;
 }
Ejemplo n.º 2
0
 public GraphItem(Type tType, ref Bitmap bmpGraph, frmGraphSettings.Resolutions rResolution, Color cGraphingColour, Parameter pParam, string sFieldParam, string sFieldDesc)
 {
     dpNodes = new List <DataPoint>();
     this.cGraphingColour = cGraphingColour;
     this.rResolution     = rResolution;
     this.bmpGraph        = bmpGraph;
     this.tType           = tType;
     this.pParam          = pParam;
     this.sFieldParam     = sFieldParam;
     this.sFieldDesc      = sFieldDesc;
 }