Esempio n. 1
0
        public AgilentFileViewerUI()
        {
            InitializeComponent();

            base.SetDirectoryArgument("RawDirectory", "Agilent Raw Directory");

            this.scan = new RcpaIntegerField(txtScan, "Scan", "Scan", 0, false);
            AddComponent(this.scan);

            this.minPeakIntensity = new RcpaDoubleField(txtMinPeakIntensity, "minPeakIntensity", "Minmum Peak Intensity", 1, true);
            AddComponent(this.minPeakIntensity);

            this.topPeak = new RcpaIntegerField(txtTopPeaks, "TopPeaks", "Top peak count", 100, true);
            AddComponent(this.topPeak);

            ZedGraphicExtension.InitGraph(this.zgcScan, "Scan", "M/Z", "Intensity", true, 0.0);
            this.zgcScan.GraphPane.XAxis.Scale.Min = 0;
            this.zgcScan.GraphPane.XAxis.Scale.Max = 2000;

            this.Text = Constants.GetSQHTitle(title, version);
        }
        public ZedGraphProfiles(ZedGraphControl zgcGraph)
        {
            this.zgcGraph = zgcGraph;

            ZedGraphicExtension.InitGraph(zgcGraph, "Theoretical Isotopic", "Isotopic Position", "Abundance Percentage", true, 0.0);
        }
        public ZedGraphIndividualScan(ZedGraphControl zgcGraph)
        {
            this.zgcGraph = zgcGraph;

            ZedGraphicExtension.InitGraph(zgcGraph, "Experimental Envelope", "m/z", "Intensity", false, 0.05);
        }
Esempio n. 4
0
        public ZedGraphSilacRegression(ZedGraphControl zgcGraph, string title, string xtitle, string ytitle)
        {
            this.zgcGraph = zgcGraph;

            ZedGraphicExtension.InitGraph(zgcGraph, title, xtitle, ytitle, false, 0.05);
        }