文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

C#Chart绘制简单图形波形

2024-04-02 19:55

关注

本文实例为大家分享了C# Chart绘制简单图形波形的具体代码,供大家参考,具体内容如下

此次用C#绘制波形使用的是Chart控件

1、将Chart控件拖进主界面,然后设置属性。

// 
// chart1
// 
chartArea2.Name = "ChartArea1";
this.chart1.ChartAreas.Add(chartArea2);
legend2.Name = "Legend1";
this.chart1.Legends.Add(legend2);
this.chart1.Location = new System.Drawing.Point(36, 6);
this.chart1.Name = "chart1";
series3.BorderWidth = 3;
series3.ChartArea = "ChartArea1";
series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
series3.Legend = "Legend1";
series3.Name = "系列1";
series4.BorderWidth = 2;
series4.ChartArea = "ChartArea1";
series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
series4.Legend = "Legend1";
series4.Name = "系列2";
this.chart1.Series.Add(series3);
this.chart1.Series.Add(series4);
this.chart1.Size = new System.Drawing.Size(839, 499);
this.chart1.TabIndex = 0;
this.chart1.Text = "chart1";

2、画线委托函数

public delegate void ChartDelegate(int series, double Value_Y_Axis); // 声明委托
public void DrawPoint(int series, double Value_Y_Axis)
{
    try
    {
        if (this.chart1.InvokeRequired)
        {
            this.chart1.Invoke((ChartDelegate)DrawPoint, series, Value_Y_Axis);
        }
        else
        {
            this.chart1.Series[series - 1].Points.Add(Value_Y_Axis);
        }
    }
    catch
    {
        MessageBox.Show("ERROR!");
    }
    //chart1.Series[series - 1].Points.Add(Value_Y_Axis);
}

3、设置一个按键,然后设置按键点击触发时候的定时器Timer属性,用来触发波形产生(用控件按键触发)

private void button3_Click(object sender, EventArgs e)
{
    System.Timers.Timer timer11 = new System.Timers.Timer(400); // 每400ms触发一次
    timer11.Elapsed += new System.Timers.ElapsedEventHandler(timer_handle); // 执行函数tiemr_handle
    timer11.AutoReset = true;
    timer11.Enabled = true;
    timer11.Start();
}

4、定时器触发执行函数

public int gIndex = 1;
public void timer_handle(object source, System.Timers.ElapsedEventArgs e)
{
    double mpre1 = Log10(gIndex) * 300;
    double mpre2 = Sin(gIndex) * 200;
    //
    DrawPoint(1, mpre1);
    DrawPoint(2, mpre2);

    gIndex++;
}

效果动态图:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯