如何在 C# 中遗漏 ZedGraph 线图中的点
我有一些代码可以在 ZedGraph 中绘制漂亮的折线图。
我无法完全更改代码,但我希望某些行的 x 轴上的每个点都没有 y 值。
我可以在 Excel 中执行此操作,但我不知道如何在 ZedGraph 中执行此操作。 我使用 .AddCurve
创建图形。
我该怎么做?
I have bit of code that draws nice line charts in ZedGraph.
I can not change the code entirely, but I would like to have some of the lines not have a y value for each point on the x-axis.
I can do this in Excel, but I don't know how to in ZedGraph.
I create graph with .AddCurve
.
How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NaN
值应该可以解决问题。如果您想打破 x=1 和 x=2 之间的界限,只需添加一个点 (1.5, double.NaN)。 Zedgraph 应该自己弥补差距。
NaN
values should do the trick.If you want to break the line for example between x=1 and x=2, just add a point (1.5, double.NaN). Zedgraph should make the gap by itself.