ZedGraph - 我正在寻找使用日期时间的示例
我正在寻找在 zedgraph 上使用日期时间字段的示例 折线图 X 轴。
编辑 - 如何设置 XAxis 最大比例
myPane.XAxis.Type = AxisType.Date;
myPane.XAxis.Scale.Min = 0;
myPane.XAxis.Scale.Max = 12;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最近遇到了同样的问题,我发现上面的答案实际上并不正确。 示例代码简单地将 XDate() 转换为 double。
但是,该示例确实强调了您需要执行的操作。 我仍然使用 DateTime.ToOADate(),但通过添加以下代码,我可以看到时间(采用 HH:MM:SS 格式):
Having had the same problem recently, I discovered that the above answer isn't actually correct. The sample code simple casts an XDate() to a double.
However, the sample does highlight what you need to do. I still use DateTime.ToOADate(), but with the addition of the following code, I get to see times (in HH:MM:SS format):
您必须将 DateTime 变量转换为 XDate 结构。 您可以创建这样的方法:
这是使用 XDate 结构的图表示例
You will have to convert the DateTime variables to XDate structs. You can create a method like this:
Here is an example of a chart using the XDate structs