通过 XY 绘图显示和编辑数据
我有 16 个固定数字(X 轴上的点)与其值(显示在 Y 轴上)之间的映射。我需要的是将这些数据显示为 XY 图,并能够通过向上或向下移动选定的点来更改这些值。它应该看起来像:
有哪些可能的方法来实现此功能(在 winforms 或 wpf 中)?也许有一些第三方库已经实现了其中的大部分。
另外,还有一种可能的情况是固定数字包含两个坐标(放置在正方形中)。在这种情况下,将需要 3D 绘图。
I have a mapping between 16 fixed numbers (points on the X axix) and their values (displayed on the Y axis). What I need is to display this data as XY-plot and to be able to change those values by moving selected point up or down. it should look something like:
What are possible approaches to implement this functionality (in winforms or wpf)? Maybe there are some third-party libraries which already implements most of it.
Also, there is a possible situation when fixed numbers contains two coordinates (placed in the square). In that case, a 3D-plot will be needed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我强烈推荐 Microsoft WinForms 图表控件
http://archive.msdn.microsoft.com/mschart/Release /ProjectReleases.aspx?ReleaseId=4418
下载示例项目,查看
图表功能 ->交互式图表 ->更改值的方式...
Winform 图表以及提供的示例环境都很棒!
I can strongly recommend the Microsoft WinForms Chart Controls
http://archive.msdn.microsoft.com/mschart/Release/ProjectReleases.aspx?ReleaseId=4418
Download the sample Poject, have a look at
Chart Features -> Interactive Charting -> Changing Values by...
The Winform Chart is just awesome as well as the provided Samples Environment!