Exemplo n.º 1
0
        public ZedGraphSrmPeptideItem(ZedGraphControl zgcGraph, GraphPane panel)
        {
            this.zgcGraph = zgcGraph;
            this.panel    = panel;

            panel.InitGraphPane(null, "Retention Time", "Ion Count", true, 0.0);

            ZedGraphicExtension.UpdateGraph(zgcGraph);
        }
        public ZedGraphExperimentalCorrelation(ZedGraphControl zgcGraph, GraphPane panel, string title)
        {
            this.zgcGraph = zgcGraph;
            this.panel    = panel;

            panel.InitGraphPane(title, "Scan", "Cosine similarity", true, 0.0);

            ZedGraphicExtension.UpdateGraph(zgcGraph);
        }
    public ZedGraphO18ExperimentalPPM(ZedGraphControl zgcGraph, GraphPane panel, string title)
    {
      this.zgcGraph = zgcGraph;
      this.panel = panel;

      panel.InitGraphPane(title, "Scan", "Monoisotopic PPM", true, 0.0);

      ZedGraphicExtension.UpdateGraph(zgcGraph);
    }
        public ZedGraphMRMRegression(ZedGraphControl zgcGraph, GraphPane panel)
        {
            this.zgcGraph = zgcGraph;
            this.panel    = panel;

            panel.InitGraphPane(null, "Heavy intensity", "Light intensity", true, 0.0);

            ZedGraphicExtension.UpdateGraph(zgcGraph);
        }
        public ZedGraphMRMProductIonScans(ZedGraphControl zgcGraph, GraphPane panel)
        {
            this.zgcGraph = zgcGraph;
            this.panel    = panel;

            panel.InitGraphPane(null, "Retention Time", "Ion Count", true, 0.0);

            ZedGraphicExtension.UpdateGraph(zgcGraph);
        }
        public ZedGraphScanIsolationWindow(ZedGraphControl zgcGraph, GraphPane panel)
        {
            this.zgcGraph = zgcGraph;

            this.panel = panel;

            panel.InitGraphPane("Isolation Window", "m/z", "Intensity", true, 0.0);

            ZedGraphicExtension.UpdateGraph(zgcGraph);
        }
        public ZedGraphSmallMoleculeFilePeak(ZedGraphControl zgcGraph, GraphPane panel, string title, Color color)
        {
            this.zgcGraph = zgcGraph;

            this.panel = panel;

            this.color = color;

            panel.InitGraphPane(title, "Scan", "Intensity", true, 0.0);

            ZedGraphicExtension.UpdateGraph(zgcGraph);
        }
        public ZedGraphScanITraq(ZedGraphControl zgcGraph, GraphPane panel, bool updateGraph)
        {
            this.zgcGraph = zgcGraph;

            this.panel = panel;

            this.updateGraph = updateGraph;

            panel.InitGraphPane("Isobaric Tag Channels", "m/z", "Intensity", true, 0.0);

            ZedGraphicExtension.UpdateGraph(zgcGraph);
        }