91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 76KB
    文件類型: .rar
    金幣: 1
    下載: 0 次
    發布日期: 2021-06-02
  • 語言: C#
  • 標簽: C#??chart??

資源簡介

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個文件信息

評論

共有 條評論