链接到图表或调度控件的示例
我正在寻找一个组件,可以用来根据四位不同讲师的时间线绘制课程时间。因此,y 轴将包含一个以 30 分钟为间隔的时间线,每个讲师的授课时间堆叠在一列中。知道我应该使用什么控件吗?我认为 MS Chart 控件堆积柱形图可能是解决方案 - 不太确定如何设置它......有人知道类似于我想要完成的链接或示例吗?
I'm looking for a component that I can use to plot class times against a timeline for four different instructors. So the y axis will contain a timeline at 30 minute intervals, with the instructors class times stacked in one column per instructor. Any idea what control I should look at using? I thinking the MS Chart control stacked column chart may be the solution - not really sure how to set this up...anyone know of a link or example similar to what I'm trying to accomplish?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
.NET Framework 的图表控件使您能够轻松地向应用程序添加强大的图表功能。它是一个完全托管的 .NET Framework 组件,专为与 Microsoft Visual Studio 2008 一起使用而设计。
有关如何使用 .NET Framework 的图表控件的示例,请下载 Codeplex 上的示例。此外,要访问社区内容,请访问图表控制论坛。
http://go.microsoft.com/fwlink/?LinkId=128713
Chart Control for .NET Framework enables you to add robust charting abilities to your applications with little effort. It is a fully managed .NET Framework component and has been specifically designed for use with Microsoft Visual Studio 2008.
For examples of how to use Chart Control for .NET Framework, download the samples on Codeplex. Also, to access community content, go to the Chart Control Forum.
http://go.microsoft.com/fwlink/?LinkId=128713
我曾多次成功使用 Google 图表。使用谷歌机器,我认为甚至有视频介绍如何使用它。
祝你好运。
I've used Google Chart a few time with success. Use the google machine, I think there are even videos out there on how to use it.
Good luck.
一个非常简单的图表组件是使用 System.Windows.Forms.DataVisualization.Charting 图表
http://msdn.microsoft.com/en-us/library/system.windows.forms.datavisualization.charting.chart.aspx
它是 .NET 中的标准4.0 框架 - 否则您可以在此处下载程序集:
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=130f7986-bf49-4fe5-9ca8-910ae6ea442c&displaylang=en
我使用此图表控件经常使用,并在其之上构建了其他组件。使用起来非常简单并且支持数据绑定
A really simple charting component is to use the System.Windows.Forms.DataVisualization.Charting Chart
http://msdn.microsoft.com/en-us/library/system.windows.forms.datavisualization.charting.chart.aspx
It comes standard in the .NET 4.0 framework -- otherwise you can download a the assemblies here:
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=130f7986-bf49-4fe5-9ca8-910ae6ea442c&displaylang=en
I use this chart control frequently and have built other components on top of it. It's very straightforward to use and supports databinding