/// <summary> /// Creates a new bar object /// </summary> /// <param name="barLCL">lowest value in that bar</param> /// <param name="barUCL">highest value for that bar</param> public Bar(HistoMath x, double barLCL, double barUCL) { this.math = x; data = math.data; this.barLCL = barLCL; this.barUCL = barUCL; }
static void Main() { Data data = new Data("21,64;a,16:15"); data.saveData("TestData"); HistoMath math = new HistoMath(data); Bar test = (Bar)math.bars[1]; test.findFrequency(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new HistoEditForm()); }