向 ZedGraph 轴添加更多刻度标签?
我大约每 4 个刻度就有刻度标签。这很棒,但我希望在每个刻度上都有标签,并且我想说每个刻度应该相隔一个小时。
我怎样才能做到这一点?
I have tick labels on about every 4 ticks. This is great, but I want labels on every single tick, and I want to say that each tick should be an hour apart.
How can I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑
XAxis
的Scale
属性:MinorStep
和MajorStep
属性。对于两者,请使用与一小时间隔相对应的值。IsPreventLabelOverlap
设置为 false。XAxis
的MajorTic
和MinorTic
记住调用
AxisChange()
方法和Invalidate( )
或Refresh()
以使用新的比例设置刷新图表。如果您有长标签,将
FontSpec
的Angle
属性设置为 90 也很有用,可以垂直而不是水平绘制长标签(这样可以节省大量空间) 。更多信息:
http://zedgraph.sourceforge.net/documentation/html/T_ZedGraph_Scale.htm
Edit properties of the
Scale
of yourXAxis
:MinorStep
andMajorStep
properties. For both, use the value that corresponds to your one-hour-gap.IsPreventLabelOverlap
to false.MajorTic
andMinorTic
of yourXAxis
Remember to call
AxisChange()
method andInvalidate()
orRefresh()
in order to refresh your graph with new scale settings.If you have long labels, it is also useful to set the
Angle
property ofFontSpec
to 90 to draw long labels vertically, instead of horizontally (it saves a lot of space).More info:
http://zedgraph.sourceforge.net/documentation/html/T_ZedGraph_Scale.htm