当 X 值被索引时 MS 图表、X 轴日期和光标交互
下午好,
哇,多好的标题啊。
基本上就是这样。
如果有一个不连续的时间序列。
因此,由于我使用 Series 的 IsXValueIndexed 属性(设置为 true)来折叠单独点之间的空间。
这工作正常,但是我现在希望能够从图表中恢复点的详细信息(X 和 Y 值)并将它们显示在表单上的标签中。
因此,我使用以下事件:
void myChart_CursorPositionChanging(object sender, CursorEventArgs e)
{
if (!double.IsNaN(e.NewPosition))
{
if (e.Axis.AxisName == AxisName.X)
{
lbl_selDate.Content = DateTime.FromOADate(e.NewPosition);
}
else
{
lbl_selValue.Content = e.NewPosition;
}
}
}
问题是日期不正确...我找不到正确的转换方法来恢复这个该死的时间戳。
你能帮我一下吗?
谢谢!
杰里米
Good afternoon,
Wow what a title.
Basically here is the thing.
If have a time series which is not continuous.
Hence, since I use the IsXValueIndexed property of the Series (set to true) to collapse the space between the separate points.
That works fine, however I would now like to be able to recover a point's detail in from the graph (X and Y values) and display them in a label on the form.
Hence, I use the following event:
void myChart_CursorPositionChanging(object sender, CursorEventArgs e)
{
if (!double.IsNaN(e.NewPosition))
{
if (e.Axis.AxisName == AxisName.X)
{
lbl_selDate.Content = DateTime.FromOADate(e.NewPosition);
}
else
{
lbl_selValue.Content = e.NewPosition;
}
}
}
The problem is that the date is incorrect... I cannot find the right conversion method to recover this damned timestamp.
Can you by any chance help me out?
Thanks!
Jeremie
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您有 DateTime 类型的 x 轴,然后使用:
假设您有 double 类型的 y 轴,然后使用:
suppose you have x-axis of type DateTime then use:
suppose you have y-axis of type double then use: