tags:

views:

20

answers:

1

In ZedGraph, I had to convert my date to XDate in order to plot it. Now, I want to know how to convert from XDate to normal date for some other process.

Thanks!

+1  A: 

Use the DateTime property

Gets or sets the date value for this item in .Net DateTime format.

ChrisF
DateTime(XDateVariable) ?
Soo
@Soo - From my reading of the documentation I think it's `DateTime date = XDateVariable.DateTime;`
ChrisF
Works great, thanks!
Soo