线系列图表中的垂直绘图
有什么想法如何将非函数(一个 X 多个 Y)绘制到线序列图中?
示例:我需要将点绘制为一条线:
- {1,0}
- {0,1}
- {2,4}
- {0,6}
Any ideas how to draw not functions (more than one Y for one X) into lineseries chart?
Example: i need to draw points as a line :
- {1,0}
- {0,1}
- {2,4}
- {0,6}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者您可以自己手动开发它(虽然困难但更可定制的方式)添加和绘制从 A 点到 B 点的线条。
Or you can develop it on your own manually (the hard but more customizable way) adding and drawing lines from point A to B.
您可以查看 Silverlight 工具包 http://silverlight.codeplex.com/releases/view/78435< /a>,或购买第三方图表解决方案。
You could check out the Silverlight toolkit http://silverlight.codeplex.com/releases/view/78435, or buy a third party charting solution.
对于这种类型的数据,使用折线系列图表是不合适的。使用散点图,并可能包括一条最佳拟合线。
With this type of data, it is inappropriate to have a line series chart. Use a scatter plot, and possibly include a line of best fit.