public VisualisationHistogramControl()
        {
            InitializeComponent();

            ecgHistogramPlot = new ECGPlot("ECG_HISTOGRAM");
            DataContext = ecgHistogramPlot;
            ecgHistogramPlot.DisplayHistogram();
        }
 /// <summary>
 /// 
 /// </summary>
 public ECG_BASELINE(ECG_Baseline_Params parameters)
 {
     this.InitializeComponent();
     this.parameters = parameters;
     ecgPlot = new ECGPlot("ECG_BASELINE");
     DataContext = ecgPlot;
     ecgPlot.DisplayAnything();
 }
Beispiel #3
0
 public R_peaks()
 {
     InitializeComponent();
     ecgPlot = new ECGPlot("R_peaks");
     DataContext = ecgPlot;
     //ecgPlot.DisplayAnything();
     Thread thread = new Thread(new ThreadStart(updatePlot));
     //thread.Start();
 }
        public VisualisationPlotControl(string moduleName)
        {
            InitializeComponent();
            _plotType = moduleName;
            ecgPlot = new ECGPlot(moduleName);
            DataContext = ecgPlot;

            ecgPlot.DisplayControler(_plotType);

            //ecgPlot.DisplayEcgBaseline();
            //ecgPlot.DisplayBasicData();
            //ecgPlot.DisplayControler(_plotType);
        }