I have data for 11 month, date 02/26/2012, 03/25/2012,
04/26/2012….. 12/30/2012.
I want to show those dates on Axis labels.
.CategoryAxis(axis => axis
.Categories(e=>e.Date)
.Date()
.BaseUnit(ChartAxisBaseUnit.Months)
.Labels(labels => labels
.Rotation(-80)
.Format("MM/dd/yyyy")
)
This code will show first date of the month. 02/01/2012,
03/01/2012 and so on. It doesn’t show the accrual date . If I remove Date and
baseUnit it will show each week. Can you tell me how to accomplish this.
Thanks
04/26/2012….. 12/30/2012.
I want to show those dates on Axis labels.
.CategoryAxis(axis => axis
.Categories(e=>e.Date)
.Date()
.BaseUnit(ChartAxisBaseUnit.Months)
.Labels(labels => labels
.Rotation(-80)
.Format("MM/dd/yyyy")
)
This code will show first date of the month. 02/01/2012,
03/01/2012 and so on. It doesn’t show the accrual date . If I remove Date and
baseUnit it will show each week. Can you tell me how to accomplish this.
Thanks