Hi lliana,
Unfortunately formatting the horizontal dates to MMM d didn't make any change in the display .
You can see from the newly attached screenshot that the dates appear crunched as "1/31/2013 12:00:00 AM" instead of "JAN 31"
Here's my full chart:
@{
Html.Kendo().Chart<
AccountPerformance
>(Model.Results)
.Name("chartMKT")
.Title("Market Value")
.Legend(legend => legend.Visible(false))
.Series(series =>
series.Line(model => model.Metrics.MarketValue)
.Name(Model.ColumnTitle)
.Labels(false)
)
.ValueAxis(axis => axis.Numeric()
.Labels(labels => labels.Format("{0:C0}")))
.CategoryAxis(axis => axis
.Categories(model => model.ObservationDate)
.Labels(labels => labels.Format("MMMM/dd"))
)
.SeriesDefaults(builder => builder.Line().Color("#005984"))
.Tooltip(tooltip => tooltip
.Visible(true)
.Format("{0:C}")
.Color("white")
.Background("black")
.Template("#= value #")
)
.Render();
}