public FunctionSinCos(int periodCount, string FuncGroup, FunctionSequence inpFunc) : base(periodCount) { funcGroup = FuncGroup; funcseg = inpFunc; //funcseg.Build(); Series.ChangeView(DevExpress.XtraCharts.ViewType.Bar); }
public lab2() { InitializeComponent(); FunctionMain fmain = new FunctionMain(periodCount); FunctionSequence fseq = new FunctionSequence(periodCount); FunctionWithFreeComponent ffree = new FunctionWithFreeComponent(periodCount); chartMainFunc.AddFunc(fmain); chartMainFunc.AddFunc(fseq); chartMainFunc.AddFunc(ffree); chartMainFunc.DrawFunc(); }