资源简介
C#窗口程序chart控件实现动态将数据添加到折线图的功能,勾选框可指示数据是否显示
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
using System.Windows.Forms.DataVisualization.Charting;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
private double dm = 0;
private double vm = 0; //速度
private double ss st = 0; //时间间隔
private List VM = new List(100);
private List DM = new List(100);
private Queue Vm = new Queue(100);
private Queue Dm = new Queue(100);
private bool Ready = false;
private bool contrl = false;
public Form1()
{
InitializeComponent();
}
//--------距离监测图表-----------//
//入口参数: 无 //
// //
private void DistanceData_Line()
{
this.chart1.ChartAreas.Clear();
ChartArea chartarea = new ChartArea(“距离监测“);
this.chart1.ChartAreas.Add(chartarea);
chartarea.AxisX.MajorGrid.LineColor = System.Drawing.Color.Transparent;
chartarea.AxisY.MajorGrid.LineColor = System.Drawing.Color.Black;
chartarea.AxisX.ScrollBar.Enabled = false;
//chartarea.AxisY.Minimum = 0;
//chartarea.AxisY.Maximum = 10000;
chartarea.AxisX.Interval = 5;
chartarea.AxisX.MajorGrid.LineColor = System.Drawing.Color.Transparent;
chartarea.AxisY.MajorGrid.LineColor = System.Drawing.Color.Black;
//chartarea.AxisX.ScrollBar.Enabled = false;
//////指当前显示的是第几个
//chartarea.AxisX.ScaleView.Size = 10;
//表头
this.chart1.titles.Clear();
this.chart1.titles.Add(“距离监测“);
this.chart1.titles[0].Text = “距离监测“;
this.chart1.titles[0].ForeColor = Color.Red;
this.chart1.titles[0].Font = new System.Drawing.Font(“Microsoft Sans serif“ 12f);
//定义存储和显示点的容器
this.chart1.Series.Clear();
Series series = new Series(“距离“);
series.ChartType = SeriesChartType.Spline;
series.ChartArea = “距离监测“;
series.Color = Color.Yellow;
series.MarkerBorderWidth = 2;
series.MarkerSize = 4;
series.Markerstyle = Markerstyle.Diamond;
series.ToolTip = “距离“ + “#VAL \r\n #AXISLABEL“;
chart1.Series.Add(series);
}
//--------速度监测图表-----------//
//入口参数: 无 //
private void VelocityData_Line()
{
//定义表区域
this.chart2.ChartAreas.Clear();
ChartArea chartarea = new ChartArea(“速度监测“);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 14848 2018-10-24 18:51 动态折线图\WindowsFormsApplication2\bin\Debug\chartaa.exe
文件 26112 2018-10-24 18:51 动态折线图\WindowsFormsApplication2\bin\Debug\chartaa.pdb
文件 11600 2018-10-24 18:51 动态折线图\WindowsFormsApplication2\bin\Debug\chartaa.vshost.exe
文件 14848 2018-10-24 18:47 动态折线图\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.exe
文件 30208 2018-10-24 18:47 动态折线图\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.pdb
文件 490 2012-06-06 02:06 动态折线图\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.vshost.exe.manifest
文件 3775 2018-10-24 17:49 动态折线图\WindowsFormsApplication2\charta.csproj
文件 9873 2018-10-24 18:47 动态折线图\WindowsFormsApplication2\Form1.cs
文件 8505 2018-10-24 18:46 动态折线图\WindowsFormsApplication2\Form1.Designer.cs
文件 6184 2018-10-24 18:46 动态折线图\WindowsFormsApplication2\Form1.resx
文件 605 2018-10-24 18:51 动态折线图\WindowsFormsApplication2\obj\x86\Debug\charta.csproj.FileListAbsolute.txt
文件 975 2018-10-24 18:51 动态折线图\WindowsFormsApplication2\obj\x86\Debug\charta.csproj.GenerateResource.Cache
文件 14848 2018-10-24 18:51 动态折线图\WindowsFormsApplication2\obj\x86\Debug\chartaa.exe
文件 26112 2018-10-24 18:51 动态折线图\WindowsFormsApplication2\obj\x86\Debug\chartaa.pdb
文件 180 2018-10-24 18:51 动态折线图\WindowsFormsApplication2\obj\x86\Debug\chartaa.Properties.Resources.resources
文件 2867 2018-10-24 17:42 动态折线图\WindowsFormsApplication2\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6482 2018-10-24 18:51 动态折线图\WindowsFormsApplication2\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 4608 2018-10-24 18:51 动态折线图\WindowsFormsApplication2\obj\x86\Debug\TempPE\Properties.Resources.Designer.cs.dll
文件 957 2018-10-24 18:50 动态折线图\WindowsFormsApplication2\obj\x86\Debug\WindowsFormsApplication2.csproj.FileListAbsolute.txt
文件 975 2018-10-24 18:46 动态折线图\WindowsFormsApplication2\obj\x86\Debug\WindowsFormsApplication2.csproj.GenerateResource.Cache
文件 14848 2018-10-24 18:47 动态折线图\WindowsFormsApplication2\obj\x86\Debug\WindowsFormsApplication2.exe
文件 180 2018-10-24 18:46 动态折线图\WindowsFormsApplication2\obj\x86\Debug\WindowsFormsApplication2.Form1.resources
文件 30208 2018-10-24 18:47 动态折线图\WindowsFormsApplication2\obj\x86\Debug\WindowsFormsApplication2.pdb
文件 180 2018-10-24 17:49 动态折线图\WindowsFormsApplication2\obj\x86\Debug\WindowsFormsApplication2.Properties.Resources.resources
文件 505 2018-10-24 17:42 动态折线图\WindowsFormsApplication2\Program.cs
文件 1380 2018-10-24 17:42 动态折线图\WindowsFormsApplication2\Properties\AssemblyInfo.cs
文件 2854 2018-10-24 18:50 动态折线图\WindowsFormsApplication2\Properties\Resources.Designer.cs
文件 5612 2018-10-24 17:42 动态折线图\WindowsFormsApplication2\Properties\Resources.resx
文件 1107 2018-10-24 18:50 动态折线图\WindowsFormsApplication2\Properties\Settings.Designer.cs
文件 249 2018-10-24 17:42 动态折线图\WindowsFormsApplication2\Properties\Settings.settings
............此处省略14个文件信息
相关资源
- C#仿真飞行仪表盘
- C# winform 宿舍管理系统 ,vs2010开发,
- 基于C#邮件客户端
- C#酒店管理系统(报告+代码+讲义)
- 打砖块小游戏,C#源码
- C#贪吃蛇源码
- 豆瓣API接口获取书籍详细信息C#
- 粒子群算法求解TSP问题
- 网络TCPServer转串口UART源码
- C#实现坐标转换,七参数之间进行数据
- c#基础复习题含答案
- 三角高程近似平差C#
- 高斯正反算程序窗体程序,附计算
- C#开发webservice接口,对客户端post服务
- 中国矿业大学程序设计综合实践学生
- C#实现串口通信
- 数据结构与算法-C#版
- C#评委打分系统
- C#调用IDL报错.docx
- C# winform实现简单的贪吃蛇
- 北大青鸟C# 影院售票系统完整源码
- c#软件开发综合实践登录,注册功能
- C#开发实战1200例(第1、2卷Pdf)+第1卷
- C#WinFrom程序的FTP服务器上传
- C#TCP服务器和客户端Winform源代码
- 简单的C#窗口考试系统,无数据库.z
- C# 画画板 仿window画画板
- C#调用Ansys
- C#图形化实现棋盘L型骨牌覆盖--分治法
- C#ASP .NET数据库应用程序实现增删改查
评论
共有 条评论