ZedGraph:只是点
我是 ZedGraph 的新手。 到目前为止我可以绘制曲线和条形。 如何只显示点而不连接它们?
我使用 C# 和 Windows 窗体。
I am new to ZedGraph. So far I could draw curves and bars. How can I display just the dots without connecting them?
I am using C# and Windows Forms.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
散点图演示 来自 ZedGraph 网站的展示了如何做到这一点。 线上有一个
IsVisible
属性,您将其设置为false
以仅显示点。The Scatter Plot Demo from ZedGraph's site shows how to do it. There is an
IsVisible
property on the Line which you set tofalse
to only show the points.我认为您的解决方案是代码项目。 看看他谈论“填充类”的部分。 有一个仅点的示例。
I think your solution is on The Code Project. Have a look at the part where he talks about "The Fill class". There is a dot-only example.