ZedGraph (.NET) - 仅具有实际值的轴标签
使用 ZedGraph 控件,假设我正在绘制 Y 值为 13、34 和 55 的数据。
如何设置向上我的 Y 轴,以便显示的唯一文本标签(我猜网格线将同步)是 13、34 和 55 的文本标签?
我不希望在数据范围内有规则间隔的标签(例如 0、25、50、75,..)。 仅标记实际值。
Using the ZedGraph control, say I am plotting data that has Y values of 13, 34, and 55.
How do I set up my Y Axis so that the only text labels shown (and I guess that grid lines would be synchronised) are those for 13, 34 and 55?
I don't want regularly spaced labels in the range of my data (say 0, 25, 50, 75, ..). Just labels at the actual values.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为直接开箱即用是不可能的。
这是使用自定义 TextObj 标签创建的一些糟糕的半解决方案。
首先,您需要禁用旧的轴刻度:
然后,您需要创建自定义标签。 如果 y_vals 是 Y 值的数组:
您可以使用 LineObj 以相同的方式创建自定义网格线。 只需将其添加到 foreach 循环中即可:
I don't think it is possible directly, out of the box.
Here's some poor half-solution created using custom TextObj labels.
First, you need to disable the old axis scale:
Then, you need to create custom labels. If y_vals is the array of your Y-values:
You can create your custom grid-lines just in the same way using LineObj. Just add this inside the foreach loop: