Hi,
For a chart's X axis I get "11/22/10" using this ItemFormatString ...
myChart.Axis.X.Labels.ItemFormatString = "<SERIES_LABEL:MM/dd/yy>";
I'd like instead to display "11/22/10 (Monday)" and wonder if someone can suggest how to do so. My fumbled attempts so far label every day Monday, no matter what the actual date is.
Thanks.
The standard formatting token for a complete day of the week is 'dddd'. If you use :MM/dd/yy (dddd) you should get what you're looking for.