实例介绍
winform中chart控件的简单应用,饼图、柱状图、曲线图
【实例截图】
【核心代码】
chart控件
└── chart控件
├── 0413MyTimer(chart控件)
│ ├── 0413MyTimer
│ │ ├── 0413MyTimer.csproj
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── 0413MyTimer.exe
│ │ │ ├── 0413MyTimer.pdb
│ │ │ ├── 0413MyTimer.vshost.exe
│ │ │ └── 0413MyTimer.vshost.exe.manifest
│ │ └── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── 0413MyTimer.csproj.FileListAbsolute.txt
│ │ ├── 0413MyTimer.exe
│ │ ├── 0413MyTimer.pdb
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── _0413MyTimer.Form1.resources
│ │ └── _0413MyTimer.Properties.Resources.resources
│ ├── 0413MyTimer.sln
│ ├── 0413MyTimer.suo
│ └── 0413MyTimer.v12.suo
├── ChartPolyline
│ ├── WindowsFormsApplicationDraw
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── WindowsFormsApplicationDraw.csproj
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── WindowsFormsApplicationDraw.exe
│ │ │ ├── WindowsFormsApplicationDraw.pdb
│ │ │ ├── WindowsFormsApplicationDraw.vshost.exe
│ │ │ └── WindowsFormsApplicationDraw.vshost.exe.manifest
│ │ └── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── WindowsFormsApplicationDraw.Form1.resources
│ │ ├── WindowsFormsApplicationDraw.Properties.Resources.resources
│ │ ├── WindowsFormsApplicationDraw.csproj.FileListAbsolute.txt
│ │ ├── WindowsFormsApplicationDraw.csproj.GenerateResource.Cache
│ │ ├── WindowsFormsApplicationDraw.csprojResolveAssemblyReference.cache
│ │ ├── WindowsFormsApplicationDraw.exe
│ │ └── WindowsFormsApplicationDraw.pdb
│ ├── WindowsFormsApplicationDraw.sln
│ ├── WindowsFormsApplicationDraw.suo
│ └── WindowsFormsApplicationDraw.v12.suo
├── ChartRealTimeShow
│ ├── ChartRealTimeShow
│ │ ├── App.config
│ │ ├── ChartRealTimeShow.csproj
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── ChartRealTimeShow.exe
│ │ │ ├── ChartRealTimeShow.exe.config
│ │ │ ├── ChartRealTimeShow.pdb
│ │ │ ├── ChartRealTimeShow.vshost.exe
│ │ │ ├── ChartRealTimeShow.vshost.exe.config
│ │ │ └── ChartRealTimeShow.vshost.exe.manifest
│ │ └── obj
│ │ └── Debug
│ │ ├── ChartRealTimeShow.Form1.resources
│ │ ├── ChartRealTimeShow.Properties.Resources.resources
│ │ ├── ChartRealTimeShow.csproj.FileListAbsolute.txt
│ │ ├── ChartRealTimeShow.exe
│ │ ├── ChartRealTimeShow.pdb
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ ├── ChartRealTimeShow.sln
│ └── ChartRealTimeShow.v12.suo
├── ForthHome
│ ├── ForthHome
│ │ ├── App.config
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Form2.Designer.cs
│ │ ├── Form2.cs
│ │ ├── Form2.resx
│ │ ├── ForthHome.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── ForthHome.exe
│ │ │ ├── ForthHome.exe.config
│ │ │ ├── ForthHome.pdb
│ │ │ ├── ForthHome.vshost.exe
│ │ │ ├── ForthHome.vshost.exe.config
│ │ │ └── ForthHome.vshost.exe.manifest
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── ForthHome.Form1.resources
│ │ │ ├── ForthHome.Form2.resources
│ │ │ ├── ForthHome.Properties.Resources.resources
│ │ │ ├── ForthHome.csproj.FileListAbsolute.txt
│ │ │ ├── ForthHome.csproj.GenerateResource.Cache
│ │ │ ├── ForthHome.csprojResolveAssemblyReference.cache
│ │ │ ├── ForthHome.exe
│ │ │ ├── ForthHome.pdb
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── www.ico.la_eadb3d83fa4622143be597f51e701e16_64X64.ico
│ ├── ForthHome.sln
│ ├── ForthHome.v12.suo
│ ├── m3w230h230q92lt_h_large_xiLJ_259f000183812f76.jpg
│ └── www.ico.la_eadb3d83fa4622143be597f51e701e16_64X64.ico
├── chart-test-c#
│ ├── WindowsFormsApplication1
│ │ ├── App.config
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── WindowsFormsApplication1.csproj
│ │ ├── WindowsFormsApplication1.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── WindowsFormsApplication1.exe
│ │ │ ├── WindowsFormsApplication1.exe.config
│ │ │ ├── WindowsFormsApplication1.pdb
│ │ │ ├── WindowsFormsApplication1.vshost.exe
│ │ │ ├── WindowsFormsApplication1.vshost.exe.config
│ │ │ └── WindowsFormsApplication1.vshost.exe.manifest
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── WindowsFormsApplication1.Form1.resources
│ │ ├── WindowsFormsApplication1.Properties.Resources.resources
│ │ ├── WindowsFormsApplication1.csproj.FileListAbsolute.txt
│ │ ├── WindowsFormsApplication1.csproj.GenerateResource.Cache
│ │ ├── WindowsFormsApplication1.csprojResolveAssemblyReference.cache
│ │ ├── WindowsFormsApplication1.exe
│ │ └── WindowsFormsApplication1.pdb
│ ├── WindowsFormsApplication1.sln
│ └── WindowsFormsApplication1.v12.suo
├── chart柱状图
│ ├── chart柱状图
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── chart柱状图.exe
│ │ │ ├── chart柱状图.pdb
│ │ │ ├── chart柱状图.vshost.exe
│ │ │ └── chart柱状图.vshost.exe.manifest
│ │ ├── chart柱状图.csproj
│ │ └── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── chart柱状图.Form1.resources
│ │ ├── chart柱状图.Properties.Resources.resources
│ │ ├── chart柱状图.csproj.FileListAbsolute.txt
│ │ ├── chart柱状图.exe
│ │ └── chart柱状图.pdb
│ ├── chart柱状图.sln
│ └── chart柱状图.suo
├── 饼图
│ ├── 饼图
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── 饼图.exe
│ │ │ ├── 饼图.pdb
│ │ │ ├── 饼图.vshost.exe
│ │ │ └── 饼图.vshost.exe.manifest
│ │ ├── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── 饼图.Form1.resources
│ │ │ ├── 饼图.Properties.Resources.resources
│ │ │ ├── 饼图.csproj.FileListAbsolute.txt
│ │ │ ├── 饼图.exe
│ │ │ └── 饼图.pdb
│ │ └── 饼图.csproj
│ ├── 饼图.sln
│ └── 饼图.suo
├── 曲线图
│ ├── 曲线图
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── 曲线图.exe
│ │ │ ├── 曲线图.pdb
│ │ │ ├── 曲线图.vshost.exe
│ │ │ └── 曲线图.vshost.exe.manifest
│ │ ├── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── 曲线图.Form1.resources
│ │ │ ├── 曲线图.Properties.Resources.resources
│ │ │ ├── 曲线图.csproj.FileListAbsolute.txt
│ │ │ ├── 曲线图.exe
│ │ │ └── 曲线图.pdb
│ │ └── 曲线图.csproj
│ ├── 曲线图.sln
│ └── 曲线图.suo
└── 波形记录
├── XCOM V2.0.exe
├── 波形记录
│ ├── App.config
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── bin
│ │ └── Debug
│ │ ├── 波形记录.exe
│ │ ├── 波形记录.exe.config
│ │ ├── 波形记录.pdb
│ │ ├── 波形记录.vshost.exe
│ │ ├── 波形记录.vshost.exe.config
│ │ └── 波形记录.vshost.exe.manifest
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── 波形记录.Form1.resources
│ │ ├── 波形记录.Properties.Resources.resources
│ │ ├── 波形记录.csproj.FileListAbsolute.txt
│ │ ├── 波形记录.csproj.GenerateResource.Cache
│ │ ├── 波形记录.csprojResolveAssemblyReference.cache
│ │ ├── 波形记录.exe
│ │ └── 波形记录.pdb
│ ├── 波形记录.csproj
│ └── 波形记录.suo
├── 波形记录.sln
└── 波形记录.v12.suo
73 directories, 279 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论