使用oxyplot的表单应用的实时数据图

时间:2016-03-09 06:50:08

标签: oxyplot

我在表单应用程序中处理实时数据。我的数据将是实时工作的,它会随着示波器波动而滑动。

我该怎么做?我只是在库文档中看到Wpf示例,但我必须使用表单应用程序。

我是氧气情节的新秀。抱歉,如果我错了

如果你建议,我也可以使用另一个图库。

提前致谢

1 个答案:

答案 0 :(得分:0)

我假设您正在使用Visual Studio创建WinForms应用程序。如果是这种情况我将使用工具箱中的数据下找到的图表工具而不是OxyPlot。将其拖动时,默认情况下名称为Chart1。它还将添加一个通用系列。以下函数将生成平滑曲线:

    private void GenerateCurve()
    {
        chart1.ChartAreas[0].Position.Auto = true;
        chart1.ChartAreas[0].AxisY.Title = "SIN()";
        chart1.ChartAreas[0].AxisX.Title = "Degrees";

        // Set graph limits
        chart1.ChartAreas[0].AxisX.Minimum = 0;
        chart1.ChartAreas[0].AxisX.Maximum = 200;
        chart1.ChartAreas[0].AxisX.MajorGrid.Enabled = false;
        chart1.ChartAreas[0].AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.FixedCount;
        chart1.ChartAreas[0].AxisX.Interval = 90;
        chart1.ChartAreas[0].AxisX.MinorTickMark.Enabled = true;
        chart1.ChartAreas[0].AxisX.MinorTickMark.Interval = 10;

        chart1.ChartAreas[0].AxisY.Minimum = -1;
        chart1.ChartAreas[0].AxisY.Maximum = 1;
        chart1.ChartAreas[0].AxisY.MajorGrid.Enabled = false;
        chart1.ChartAreas[0].AxisY.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.FixedCount;
        chart1.ChartAreas[0].AxisY.Interval = .1;
        chart1.ChartAreas[0].AxisY.MinorTickMark.Enabled = true;

        // Set spline instead of line
        chart1.Series[0].ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;

        // Generate points
        for (int x = 0; x < 1000; x++)
        {
            double y = Math.Sin(x);
            chart1.Series[0].Points.AddXY((double)x, Math.Sin(x));
            if (chart1.Series[0].Points.Count > 100)
            {
                chart1.Series[0].Points.RemoveAt(0);
                chart1.ChartAreas[0].AxisX.Minimum = chart1.Series[0].Points[0].XValue;
                chart1.ChartAreas[0].AxisX.Maximum = x;
                Application.DoEvents();
                System.Threading.Thread.Sleep(100);
            }
        }
    }