Is it possible to have a ValueFormatString that has both date and number? The reason I ask is, the data that I need to display is by date and number, not by DateTime.
example: 12/1/2014 1 …… 12/8/2014 24. While it looks like DateTime it isn’t.
With the current DateTime valueFormatString each 24th hour/value gets converted to 0 and the date gets incremented by 1 so (12/1/2014 24 becomes 12/2/2014 0) I need my 24th hour/value to remain on the same date as the data that is supplying it.
Is this possible? Can the new valueFormatString be created?